-
-
-
- {% if current_user.username|length > 18 %}
- {{ current_user.username[:15] + '...' }}
+
+ {% if current_user.username|length > 32 %}
+ {{ current_user.username[:29] + '...' }}
{% else %}
- {{ current_user.username }}
+ {{ current_user.username }}
{% endif %}
-
-
+
+
{% if current_user.email|length > 32 %}
{{ current_user.email[:29] + '...' }}
{% else %}
{{ current_user.email }}
{% endif %}
-
-
+