misuzu/templates/profile/master.twig

45 lines
1.2 KiB
Twig
Raw Normal View History

{% extends 'master.twig' %}
{% set image = url('user-avatar', {'user': profile.user_id}) %}
{% set manage_link = '/manage/users.php?v=view&u=' ~ profile.user_id %}
{% set stats = [
{
'title': 'Joined',
'is_date': true,
'value': profile.user_created,
},
{
'title': 'Last seen',
'is_date': true,
'value': profile.user_active,
},
{
'title': 'Following',
'value': profile.following_count,
'url': url('user-profile-following', {'user': profile.user_id}),
},
{
'title': 'Followers',
'value': profile.followers_count,
'url': url('user-profile-followers', {'user': profile.user_id}),
},
{
'title': 'Topics',
'value': profile.forum_topic_count,
2019-03-10 22:18:33 +01:00
'url': url('user-profile-forum-topics', {'user': profile.user_id}),
},
{
'title': 'Posts',
'value': profile.forum_post_count,
2019-03-10 22:18:33 +01:00
'url': url('user-profile-forum-posts', {'user': profile.user_id}),
},
{
'title': 'Comments',
'value': profile.comments_count,
},
{
'title': 'Changes',
'value': profile.changelog_count,
},
] %}