diff --git a/new_customers/templates/new_customers/potentialsubscriber_detail.html b/new_customers/templates/new_customers/potentialsubscriber_detail.html
index 99f714c..cdbb4e5 100644
--- a/new_customers/templates/new_customers/potentialsubscriber_detail.html
+++ b/new_customers/templates/new_customers/potentialsubscriber_detail.html
@@ -1,6 +1,10 @@
{% extends request.is_ajax|yesno:'bajax.html,base.html' %}
{% load i18n bootstrap3 %}
+{% block title %}
+ {{ object.fio|default:_('Not assigned') }}
+{% endblock %}
+
{% block breadcrumb %}
diff --git a/new_customers/templates/new_customers/potentialsubscriber_list.html b/new_customers/templates/new_customers/potentialsubscriber_list.html
index 7cf48f9..bab929f 100644
--- a/new_customers/templates/new_customers/potentialsubscriber_list.html
+++ b/new_customers/templates/new_customers/potentialsubscriber_list.html
@@ -1,6 +1,7 @@
{% extends request.is_ajax|yesno:'bajax.html,base.html' %}
{% load i18n %}
+{% block title %}{% trans 'Potential subscribers' %}{% endblock %}
{% block breadcrumb %}
diff --git a/searchapp/templates/searchapp/index.html b/searchapp/templates/searchapp/index.html
index 999debf..60174ae 100644
--- a/searchapp/templates/searchapp/index.html
+++ b/searchapp/templates/searchapp/index.html
@@ -1,6 +1,8 @@
{% extends 'base.html' %}
{% load i18n %}
+{% block title %}{% trans 'Search' %}{% endblock %}
+
{% block breadcrumb %}
diff --git a/tariff_app/templates/tariff_app/editTarif.html b/tariff_app/templates/tariff_app/editTarif.html
index d701828..3618c13 100644
--- a/tariff_app/templates/tariff_app/editTarif.html
+++ b/tariff_app/templates/tariff_app/editTarif.html
@@ -1,6 +1,14 @@
{% extends request.is_ajax|yesno:'bajax.html,base.html' %}
{% load i18n bootstrap3 %}
+{% block title %}
+ {% if tarif_id == 0 %}
+ {% trans 'Add' %}
+ {% else %}
+ {{ form.title.value }}
+ {% endif %}
+{% endblock %}
+
{% block breadcrumb %}
diff --git a/tariff_app/templates/tariff_app/ext.html b/tariff_app/templates/tariff_app/ext.html
index 8124fd7..586ef24 100644
--- a/tariff_app/templates/tariff_app/ext.html
+++ b/tariff_app/templates/tariff_app/ext.html
@@ -1,6 +1,8 @@
{% extends request.is_ajax|yesno:'bajax.html,base.html' %}
{% load i18n %}
+{% block title %}{% trans 'Services' %}{% endblock %}
+
{% block breadcrumb %}
diff --git a/tariff_app/templates/tariff_app/periodic_pays/add_edit.html b/tariff_app/templates/tariff_app/periodic_pays/add_edit.html
index b80049e..7d8ecd5 100644
--- a/tariff_app/templates/tariff_app/periodic_pays/add_edit.html
+++ b/tariff_app/templates/tariff_app/periodic_pays/add_edit.html
@@ -1,6 +1,14 @@
{% extends request.is_ajax|yesno:'bajax.html,base.html' %}
{% load i18n bootstrap3 %}
+{% block title %}
+ {% if pay_instance %}
+ {% trans 'Change periodic pay' %}
+ {% else %}
+ {% trans 'Add new periodic pay' %}
+ {% endif %}
+{% endblock %}
+
{% block breadcrumb %}
diff --git a/tariff_app/templates/tariff_app/service_users.html b/tariff_app/templates/tariff_app/service_users.html
index 8d5d9c1..31255d8 100644
--- a/tariff_app/templates/tariff_app/service_users.html
+++ b/tariff_app/templates/tariff_app/service_users.html
@@ -1,6 +1,8 @@
{% extends 'base.html' %}
{% load i18n dpagination %}
+{% block title %}{% trans 'Service users' %}{% endblock %}
+
{% block breadcrumb %}