diff --git a/taskapp/locale/ru/LC_MESSAGES/django.po b/taskapp/locale/ru/LC_MESSAGES/django.po
index c83af1f..a80eae4 100644
--- a/taskapp/locale/ru/LC_MESSAGES/django.po
+++ b/taskapp/locale/ru/LC_MESSAGES/django.po
@@ -308,7 +308,7 @@ msgstr "Задача действительна до"
#: taskapp/templates/taskapp/view.html:28
msgid "time left"
-msgstr ""
+msgstr "Времени осталось"
#: taskapp/templates/taskapp/view.html:29
msgid "Task type"
@@ -335,9 +335,8 @@ msgid "Error in the form fields"
msgstr "Ошибка в полях формы"
#: taskapp/views.py:151
-#, python-format
-msgid "User '%s' does not exist"
-msgstr ""
+msgid "User does not exist"
+msgstr "Абонент не найден"
msgid "Active tasks"
msgstr "Активные задачи"
@@ -359,3 +358,9 @@ msgstr "Задачи, которые необходимо выполнить"
msgid "locality %s. Task type - %s. "
msgstr "с. %s. Тип задачи - %s. "
+
+msgid "Name"
+msgstr "ФИО"
+
+msgid "Address"
+msgstr "Адрес"
diff --git a/taskapp/templates/taskapp/tasklist.html b/taskapp/templates/taskapp/tasklist.html
index d4a0002..a9e1071 100644
--- a/taskapp/templates/taskapp/tasklist.html
+++ b/taskapp/templates/taskapp/tasklist.html
@@ -7,14 +7,13 @@
#
+ {% trans 'Name' %}
+ {% trans 'Address' %}
+ {% trans 'The nature of the damage' %}
{% trans 'Description' %}
{% trans 'Task author' %}
- {% trans 'The nature of the damage' %}
- {% trans 'Condition' %}
- {% trans 'A priority' %}
{% trans 'Date of create' %}
- {% trans 'Attachment' %}
- {% trans 'Actions' %}
+ {% trans 'Actions' %}
{% trans 'Description' %}: {{ task.descr }}
+ + {% trans 'Task author' %}: {{ task.author.username }}