diff --git a/main/templates/pages/profile.html b/main/templates/pages/profile.html
index 1dd6005..c97fa4d 100644
--- a/main/templates/pages/profile.html
+++ b/main/templates/pages/profile.html
@@ -6,7 +6,7 @@
{% block title %}{{ pagename }}{% endblock %}
-{% block heading %}Профиль{% endblock %}
+{% block heading %}
Профиль
{% endblock %}
{% block extra_css %}
@@ -22,7 +22,7 @@
{% block content %}
-
+
-
Имя пользователя {{ profile.name }}
+ Имя пользователя
{{ profile.name }}
- Электронная почта {{ profile.user.email }}
+ Электронная почта
{{ profile.user.email }}
- Текущая роль
+ Текущая роль
{% if profile.custom_role_id == ZENDESK_ROLES.engineer %}
- engineer
+ engineer
{% elif profile.custom_role_id == ZENDESK_ROLES.light_agent %}
- light_agent
+ light_agent
+ {% else %}
+ None
{% endif %}
-
+
-