diff --git a/app/templates/403.html b/app/templates/403.html
index de3fcf1cffbd7b8c9a426812cb05c35cba7dd482..90a60ec1e1ede7efbc6952a037cceedc4874690e 100644
--- a/app/templates/403.html
+++ b/app/templates/403.html
@@ -1,6 +1,6 @@
 {%- extends "base.html" %}
 
-{% block title %}Forbidden - CSEntry{% endblock %}
+{% block title %}Forbidden{% endblock %}
 
 {% block main %}
   <h1>Forbidden</h1>
diff --git a/app/templates/404.html b/app/templates/404.html
index 35155ba724a560fdccaf730ec535ac0beeb3cd90..2a026a034bb405b153350801017fc6dff0f352bf 100644
--- a/app/templates/404.html
+++ b/app/templates/404.html
@@ -1,6 +1,6 @@
 {%- extends "base.html" %}
 
-{% block title %}Page Not Found - CSEntry{% endblock %}
+{% block title %}Page Not Found{% endblock %}
 
 {% block main %}
   <h1>Page Not Found</h1>
diff --git a/app/templates/500.html b/app/templates/500.html
index 3129c10bf3147b025f294ee5b4c7974a10ff804f..ff3492afafc33fd467a2a38a1143e8a32300be81 100644
--- a/app/templates/500.html
+++ b/app/templates/500.html
@@ -1,6 +1,6 @@
 {%- extends "base.html" %}
 
-{% block title %}Internal Server Error - CSEntry{% endblock %}
+{% block title %}Internal Server Error{% endblock %}
 
 {% block main %}
   <h1>Internal Server Error</h1>
diff --git a/app/templates/admin/index.html b/app/templates/admin/index.html
index 996ac4028d56e285468aabe48fe91b15772ff991..c86d3f4cc0cec104091ae600ff79a6bcc8156128 100644
--- a/app/templates/admin/index.html
+++ b/app/templates/admin/index.html
@@ -1,6 +1,6 @@
 {% extends "admin/master.html" %}
 
-{% block title %}Admin - CSEntry{% endblock %}
+{% block title %}Admin{% endblock %}
 
 {% block body %}
 <h2>Use the admin interface with care</h2>
diff --git a/app/templates/inventory/attributes.html b/app/templates/inventory/attributes.html
index 2779a3775f9fdfd30f23f103ddfed7e37f76e60d..99a874907a849683b76e4a470fdd6ac235395fc4 100644
--- a/app/templates/inventory/attributes.html
+++ b/app/templates/inventory/attributes.html
@@ -1,7 +1,7 @@
 {% extends "base-fluid.html" %}
 {% from "_helpers.html" import render_field %}
 
-{% block title %}Attributes - CSEntry{% endblock %}
+{% block title %}Attributes{% endblock %}
 
 {% block main %}
   <ul class="nav nav-tabs">
diff --git a/app/templates/inventory/attributes_favorites.html b/app/templates/inventory/attributes_favorites.html
index cdb16b5bb36f9eca7d0507aa680650969a0d0f37..9f0e4cfb3416a51942f9bb25bf6b97e1237f361d 100644
--- a/app/templates/inventory/attributes_favorites.html
+++ b/app/templates/inventory/attributes_favorites.html
@@ -1,6 +1,6 @@
 {% extends "inventory/attributes.html" %}
 
-{% block title %}Attributes favorites - CSEntry{% endblock %}
+{% block title %}Attributes favorites{% endblock %}
 
 {% block attributes_main %}
   <table id="attributes_favorites_table" class="table table-bordered table-hover table-sm" cellspacing="0" width="100%">
diff --git a/app/templates/inventory/create_item.html b/app/templates/inventory/create_item.html
index ec13c714c9d779991e7d2b8782152f861cdb079e..6ed737ad7987b046ca71129aad495fbaa3061e5c 100644
--- a/app/templates/inventory/create_item.html
+++ b/app/templates/inventory/create_item.html
@@ -1,7 +1,7 @@
 {% extends "inventory/items.html" %}
 {% from "_helpers.html" import render_field, figure %}
 
-{% block title %}Register Item - CSEntry{% endblock %}
+{% block title %}Register Item{% endblock %}
 
 {% block items_main %}
   <div class="row">
diff --git a/app/templates/inventory/edit_item.html b/app/templates/inventory/edit_item.html
index 724be0c7b9ef08304eae04697c07c8ab3a1c3c8b..80f07918dbea6e1c3153dd995d50d08cd6f2d6f1 100644
--- a/app/templates/inventory/edit_item.html
+++ b/app/templates/inventory/edit_item.html
@@ -1,7 +1,7 @@
 {% extends "inventory/items.html" %}
 {% from "_helpers.html" import render_field %}
 
-{% block title %}Edit Item - CSEntry{% endblock %}
+{% block title %}Edit {{ form.ics_id.data }} item{% endblock %}
 
 {% block items_nav %}
     <li class="nav-item">
diff --git a/app/templates/inventory/items.html b/app/templates/inventory/items.html
index 7c13e2861018d85af1eddf6904d17214d1601703..68ca6fb7c91759948ac2565754885f996d7cf21a 100644
--- a/app/templates/inventory/items.html
+++ b/app/templates/inventory/items.html
@@ -1,7 +1,7 @@
 {% extends "base-fluid.html" %}
 {% from "_helpers.html" import is_active, waiting_for %}
 
-{% block title %}Items - CSEntry{% endblock %}
+{% block title %}Items{% endblock %}
 
 {% block main %}
   {{ waiting_for("Please wait while your file is being prepared...", "downloadExcelModal") }}
diff --git a/app/templates/inventory/scanner.html b/app/templates/inventory/scanner.html
index 81b541abdb4a79ef2c7bf00596c671db78b80d6f..23c338f7fdc90f123e26f8312e6fde24652f99cc 100644
--- a/app/templates/inventory/scanner.html
+++ b/app/templates/inventory/scanner.html
@@ -1,7 +1,7 @@
 {% extends "base-fluid.html" %}
 {% from "_helpers.html" import figure %}
 
-{% block title %}Scanner - CSEntry{% endblock %}
+{% block title %}Scanner{% endblock %}
 
 {% block main %}
   <div class="col-md-8">
diff --git a/app/templates/inventory/view_item.html b/app/templates/inventory/view_item.html
index 336a04c2af622d6e0cf0e75b1bec39f864bda913..277416915f6e46119f912af4117fdfbf282ed3d5 100644
--- a/app/templates/inventory/view_item.html
+++ b/app/templates/inventory/view_item.html
@@ -1,7 +1,7 @@
 {% extends "inventory/items.html" %}
 {% from "_helpers.html" import link_to_item, link_to_items, format_datetime, link_to_host, item_comment %}
 
-{% block title %}View Item - CSEntry{% endblock %}
+{% block title %}View {{ item.ics_id }} item{% endblock %}
 
 {% block items_nav %}
     <li class="nav-item">
diff --git a/app/templates/network/create_domain.html b/app/templates/network/create_domain.html
index e54b4bdde419cbcdd1d4ca3591ffad79f966f08e..bb1be1a3fb994991e27e08dd9c6c2733a5ca1290 100644
--- a/app/templates/network/create_domain.html
+++ b/app/templates/network/create_domain.html
@@ -1,7 +1,7 @@
 {% extends "network/domains.html" %}
 {% from "_helpers.html" import render_field %}
 
-{% block title %}Register Domain - CSEntry{% endblock %}
+{% block title %}Register Domain{% endblock %}
 
 {% block domains_main %}
   <form id="DomainForm" method="POST">
diff --git a/app/templates/network/create_group.html b/app/templates/network/create_group.html
index 4cf377a7a10bbf47e9905bf4536faefceea3efc6..ac51c41427b842d3b4817263979c85f7d376fa65 100644
--- a/app/templates/network/create_group.html
+++ b/app/templates/network/create_group.html
@@ -1,7 +1,7 @@
 {% extends "network/groups.html" %}
 {% from "_helpers.html" import render_field %}
 
-{% block title %}Register Ansible group - CSEntry{% endblock %}
+{% block title %}Register Ansible group{% endblock %}
 
 {% block groups_main %}
   <form id="groupForm" method="POST">
diff --git a/app/templates/network/create_host.html b/app/templates/network/create_host.html
index f234cd8b29b2450ac81ee40b8d0ea510c62382ad..726ce2bf4a224c5df46ecca63d66bbf6f967f754 100644
--- a/app/templates/network/create_host.html
+++ b/app/templates/network/create_host.html
@@ -1,7 +1,7 @@
 {% extends "network/hosts.html" %}
 {% from "_helpers.html" import render_field %}
 
-{% block title %}Register Host - CSEntry{% endblock %}
+{% block title %}Register Host{% endblock %}
 
 {% block hosts_main %}
   <form id="hostForm" method="POST">
diff --git a/app/templates/network/create_interface.html b/app/templates/network/create_interface.html
index 160668f19f91cc1a14241018ba6e99797c00bef5..8d8fe9366395db9ae1e3ddabd466e28af3525747 100644
--- a/app/templates/network/create_interface.html
+++ b/app/templates/network/create_interface.html
@@ -1,7 +1,7 @@
 {% extends "network/hosts.html" %}
 {% from "_helpers.html" import render_field %}
 
-{% block title %}Register Interface - CSEntry{% endblock %}
+{% block title %}Add Interface to {{ hostname }}{% endblock %}
 
 {% block hosts_nav %}
     <li class="nav-item">
diff --git a/app/templates/network/create_network.html b/app/templates/network/create_network.html
index fb2e52fc6eb3f7de73d2a439fa845a3256549c18..a0fc80fa5460ca342a54a52e3443e852833752ba 100644
--- a/app/templates/network/create_network.html
+++ b/app/templates/network/create_network.html
@@ -1,7 +1,7 @@
 {% extends "network/networks.html" %}
 {% from "_helpers.html" import render_field %}
 
-{% block title %}Register Network - CSEntry{% endblock %}
+{% block title %}Register Network{% endblock %}
 
 {% block networks_main %}
   <form id="networkForm" method="POST">
diff --git a/app/templates/network/create_scope.html b/app/templates/network/create_scope.html
index 41d3ad006eda6dc0e2bc40086319abf17fc34d3c..427bea9e3d9028aded4f9eaa280167bfa0dd6b18 100644
--- a/app/templates/network/create_scope.html
+++ b/app/templates/network/create_scope.html
@@ -1,7 +1,7 @@
 {% extends "network/scopes.html" %}
 {% from "_helpers.html" import render_field %}
 
-{% block title %}Register Network Scope - CSEntry{% endblock %}
+{% block title %}Register Network Scope{% endblock %}
 
 {% block scopes_main %}
   <form id="scopeForm" method="POST">
diff --git a/app/templates/network/domains.html b/app/templates/network/domains.html
index fa8698430770481028c593e056e7893e362f4011..5f53ae7afd1e9a9383655212f625ad59850ee9bb 100644
--- a/app/templates/network/domains.html
+++ b/app/templates/network/domains.html
@@ -1,7 +1,7 @@
 {% extends "base-fluid.html" %}
 {% from "_helpers.html" import is_active %}
 
-{% block title %}Domains - CSEntry{% endblock %}
+{% block title %}Domains{% endblock %}
 
 {% block main %}
   {% set path = request.path %}
diff --git a/app/templates/network/edit_group.html b/app/templates/network/edit_group.html
index 3d27b1b2da8fe5cff28c6c4d038d08a7fa255a7d..561a84555938fa4cde789c905aedba0763fb98cd 100644
--- a/app/templates/network/edit_group.html
+++ b/app/templates/network/edit_group.html
@@ -1,7 +1,7 @@
 {% extends "network/groups.html" %}
 {% from "_helpers.html" import render_field %}
 
-{% block title %}Edit Ansible group - CSEntry{% endblock %}
+{% block title %}Edit {{ form.name.data }} Ansible group{% endblock %}
 
 {% block groups_nav %}
     <li class="nav-item">
diff --git a/app/templates/network/edit_host.html b/app/templates/network/edit_host.html
index f6f0bc1f556d247b29bc8133e60e79da39fa1f0b..04d56f08e626bc6ed1d577183da60c28926309dd 100644
--- a/app/templates/network/edit_host.html
+++ b/app/templates/network/edit_host.html
@@ -1,7 +1,7 @@
 {% extends "network/hosts.html" %}
 {% from "_helpers.html" import render_field %}
 
-{% block title %}Edit Host - CSEntry{% endblock %}
+{% block title %}Edit {{ form.name.data }} host{% endblock %}
 
 {% block hosts_nav %}
     <li class="nav-item">
diff --git a/app/templates/network/edit_interface.html b/app/templates/network/edit_interface.html
index cd751dfd0b561d88a393c8ef9e2eacb8e47c7191..63e81a8bbcf1a008236c79e38bacc546a955f871 100644
--- a/app/templates/network/edit_interface.html
+++ b/app/templates/network/edit_interface.html
@@ -1,7 +1,7 @@
 {% extends "network/hosts.html" %}
 {% from "_helpers.html" import render_field %}
 
-{% block title %}Edit Interface - CSEntry{% endblock %}
+{% block title %}Edit {{ form.interface_name.data }} interface{% endblock %}
 
 {% block hosts_nav %}
     <li class="nav-item">
diff --git a/app/templates/network/edit_network.html b/app/templates/network/edit_network.html
index d06182f2c445ff65bc0d9633ca4841958f9e7641..a16e0f086bdf29d6414c903032f8a2c433f179c8 100644
--- a/app/templates/network/edit_network.html
+++ b/app/templates/network/edit_network.html
@@ -1,7 +1,7 @@
 {% extends "network/networks.html" %}
 {% from "_helpers.html" import render_field %}
 
-{% block title %}Edit Network - CSEntry{% endblock %}
+{% block title %}Edit {{ form.vlan_name.data }} network{% endblock %}
 
 {% block networks_nav %}
     <li class="nav-item">
diff --git a/app/templates/network/groups.html b/app/templates/network/groups.html
index 7d82d9d1a7570319af2a7aa2f6461461320c25bf..ba966686d8139288952d731e9978a66eece2eacc 100644
--- a/app/templates/network/groups.html
+++ b/app/templates/network/groups.html
@@ -1,7 +1,7 @@
 {% extends "base-fluid.html" %}
 {% from "_helpers.html" import is_active %}
 
-{% block title %}Ansible Groups - CSEntry{% endblock %}
+{% block title %}Ansible Groups{% endblock %}
 
 {% block main %}
   {% set path = request.path %}
diff --git a/app/templates/network/hosts.html b/app/templates/network/hosts.html
index 42690a52fa152adf9a870a7015e222c08f7e5071..3357a25ad943ad6d7dd150f36f458cb648fc7f5f 100644
--- a/app/templates/network/hosts.html
+++ b/app/templates/network/hosts.html
@@ -1,7 +1,7 @@
 {% extends "base-fluid.html" %}
 {% from "_helpers.html" import is_active %}
 
-{% block title %}Hosts - CSEntry{% endblock %}
+{% block title %}Hosts{% endblock %}
 
 {% block main %}
   {% set path = request.path %}
diff --git a/app/templates/network/networks.html b/app/templates/network/networks.html
index ae98b32af249f5a6e9302d18463c5f8b9841e635..9315038701347cdc9d1ba7cd6919b4453bc17908 100644
--- a/app/templates/network/networks.html
+++ b/app/templates/network/networks.html
@@ -1,7 +1,7 @@
 {% extends "base-fluid.html" %}
 {% from "_helpers.html" import is_active, link_to_network, link_to_scope %}
 
-{% block title %}Networks - CSEntry{% endblock %}
+{% block title %}Networks{% endblock %}
 
 {% block main %}
 {% set path = request.path %}
diff --git a/app/templates/network/scopes.html b/app/templates/network/scopes.html
index 3b50bd15793907e9d5f0e5521c33620f433267d2..62276f580f2334f8af30970f4198992c0e7e4832 100644
--- a/app/templates/network/scopes.html
+++ b/app/templates/network/scopes.html
@@ -1,7 +1,7 @@
 {% extends "base-fluid.html" %}
 {% from "_helpers.html" import is_active, link_to_scope %}
 
-{% block title %}Network Scopes - CSEntry{% endblock %}
+{% block title %}Network Scopes{% endblock %}
 
 {% block main %}
 {% set path = request.path %}
diff --git a/app/templates/network/view_group.html b/app/templates/network/view_group.html
index c2a084367ddf1f2cb5c0d2f9f101544cd53e5597..ac380eac8f89c2a6a65cb71cdc2620941728386b 100644
--- a/app/templates/network/view_group.html
+++ b/app/templates/network/view_group.html
@@ -2,7 +2,7 @@
 {% from "_helpers.html" import link_to_hosts, link_to_ansible_groups,
    delete_button_with_confirmation %}
 
-{% block title %}View Ansible group - CSEntry{% endblock %}
+{% block title %}View {{ group.name }} Ansible group{% endblock %}
 
 {% block groups_nav %}
     <li class="nav-item">
diff --git a/app/templates/network/view_host.html b/app/templates/network/view_host.html
index 080b7460a144f9d41f5a43be68eb60333c9dbb6e..5032f434ea65b64c4d0608856c4b48322e26b243 100644
--- a/app/templates/network/view_host.html
+++ b/app/templates/network/view_host.html
@@ -3,7 +3,7 @@
    link_to_ansible_groups, link_to_network,
    delete_button_with_confirmation, render_field, submit_button_with_confirmation %}
 
-{% block title %}View Host - CSEntry{% endblock %}
+{% block title %}View {{ host.name }} host{% endblock %}
 
 {% block hosts_nav %}
     <li class="nav-item">
diff --git a/app/templates/network/view_network.html b/app/templates/network/view_network.html
index b5676f0096b34a0c98d59a8b1f9db25776015532..ab43b7a628f7292fdf5fdec86a548613404613a1 100644
--- a/app/templates/network/view_network.html
+++ b/app/templates/network/view_network.html
@@ -1,7 +1,7 @@
 {% extends "network/networks.html" %}
 {% from "_helpers.html" import link_to_interfaces_host, link_to_scope %}
 
-{% block title %}View Network - CSEntry{% endblock %}
+{% block title %}View {{ network.vlan_name }} network{% endblock %}
 
 {% block networks_nav %}
 <li class="nav-item">
diff --git a/app/templates/network/view_scope.html b/app/templates/network/view_scope.html
index ceddbd7c62b683d2342b5a85864eb472c741b31a..47cb6fb0b54aa9aa6b34ac303d0d6443d948e0d5 100644
--- a/app/templates/network/view_scope.html
+++ b/app/templates/network/view_scope.html
@@ -1,7 +1,7 @@
 {% extends "network/scopes.html" %}
 {% from "_helpers.html" import link_to_networks %}
 
-{% block title %}View Network Scope - CSEntry{% endblock %}
+{% block title %}View {{ scope.name }} network Scope{% endblock %}
 
 {% block scopes_nav %}
 <li class="nav-item">
diff --git a/app/templates/task/tasks.html b/app/templates/task/tasks.html
index 64ea3fd0ac1e9a52f1e82768c1af0354616921ec..5d223dc0c53e43002f9c0291188bb6ac7feda727 100644
--- a/app/templates/task/tasks.html
+++ b/app/templates/task/tasks.html
@@ -1,7 +1,7 @@
 {% extends "base-fluid.html" %}
 {% from "_helpers.html" import is_active %}
 
-{% block title %}Tasks - CSEntry{% endblock %}
+{% block title %}Tasks{% endblock %}
 
 {% block main %}
   {% set path = request.path %}
diff --git a/app/templates/task/view_task.html b/app/templates/task/view_task.html
index 15ae5fbac0e4ec8164ee4388687d066aa1c21d5b..09b46bee7c862046d67075800face3f24d8cff5a 100644
--- a/app/templates/task/view_task.html
+++ b/app/templates/task/view_task.html
@@ -1,7 +1,7 @@
 {% extends "task/tasks.html" %}
 {% from "_helpers.html" import link_to_task, link_to_tasks %}
 
-{% block title %}View Task - CSEntry{% endblock %}
+{% block title %}View {{ task.name }} task{% endblock %}
 
 {% block tasks_nav %}
     <li class="nav-item">
diff --git a/app/templates/user/login.html b/app/templates/user/login.html
index 34f55b96088e490d01592f9484c2ad010feb3df9..f2f451ee729e8b413cb8ace2698dddc699435f6f 100644
--- a/app/templates/user/login.html
+++ b/app/templates/user/login.html
@@ -1,6 +1,6 @@
 {% extends "base.html" %}
 
-{% block title %}Login - CSEntry{% endblock %}
+{% block title %}Login{% endblock %}
 
 {% block main %}
   <div class="col-sm-offset-2 col-sm-4">
diff --git a/app/templates/user/profile.html b/app/templates/user/profile.html
index 14b58be1ced43de80930059054421c76a28e1dcf..2e7baa1ce27655b8b9176519344654e63c169b04 100644
--- a/app/templates/user/profile.html
+++ b/app/templates/user/profile.html
@@ -1,7 +1,7 @@
 {% extends "base.html" %}
 {% from "_helpers.html" import render_field, delete_button_with_confirmation %}
 
-{% block title %}Profile - CSEntry{% endblock %}
+{% block title %}Profile{% endblock %}
 
 {% block main %}
   {% if generated_token %}
diff --git a/tests/functional/test_web.py b/tests/functional/test_web.py
index 460db6d351bf70f6994683a2e0cccb14cf82bc2c..8dd5e7ef4aaf09370aa77350ab2045db1f9099c3 100644
--- a/tests/functional/test_web.py
+++ b/tests/functional/test_web.py
@@ -58,14 +58,14 @@ def no_login_check_client(request, app):
 
 def test_login_logout(client):
     response = login(client, "unknown", "invalid")
-    assert b"<title>Login - CSEntry</title>" in response.data
+    assert b"<title>Login</title>" in response.data
     response = login(client, "user_rw", "invalid")
-    assert b"<title>Login - CSEntry</title>" in response.data
+    assert b"<title>Login</title>" in response.data
     response = login(client, "user_rw", "userrw")
     assert b"Control System Entry" in response.data
     assert b"User RW" in response.data
     response = logout(client)
-    assert b"<title>Login - CSEntry</title>" in response.data
+    assert b"<title>Login</title>" in response.data
 
 
 def test_index(logged_client):