diff --git a/app/templates/user.html b/app/templates/user.html index 6d719af..eebd6bb 100644 --- a/app/templates/user.html +++ b/app/templates/user.html @@ -10,9 +10,9 @@

{{ user.nickname }}

{% if user.about_me %}

{{ user.about_me }}

{% endif %} {% if user.last_seen %} -

{{ _('Last seen:') }} {{ momentjs(user.last_seen).calendar() }}

+

{{ _('Last login:') }} {{ momentjs(user.last_seen).calendar() }}

{% endif %} -

number of posts written: {{ user.posts.count() }}

+

Number of posts written: {{ user.posts.count() }}

{{ _('Followers:') }} {{ user.followers.count() - 1 }} | {{ _('Following:') }} {{ user.followed.count() - 1 }} | {% if user.id == g.user.id %} {{ _('Edit your profile') }}