misuzu/templates/profile/master.twig

56 lines
1.9 KiB
Twig
Raw Normal View History

{% extends 'master.twig' %}
2019-12-03 01:06:36 +00:00
{% if profile_user is defined %}
{% set image = url('user-avatar', {'user': profile_user.user_id, 'res': 200}) %}
{% set manage_link = url('manage-user', {'user': profile_user.user_id}) %}
2019-06-06 20:18:31 +00:00
{% set stats = [
{
'title': 'Joined',
'is_date': true,
2019-12-03 01:06:36 +00:00
'value': profile_user.user_created,
2019-06-06 20:18:31 +00:00
},
{
'title': 'Last seen',
'is_date': true,
2019-12-03 01:06:36 +00:00
'value': profile_user.user_active,
2019-06-06 20:18:31 +00:00
},
{
'title': 'Following',
2019-12-03 01:06:36 +00:00
'value': profile_stats.following_count,
'url': url('user-profile-following', {'user': profile_user.user_id}),
2019-06-06 20:18:31 +00:00
'active': profile_mode == 'following',
},
{
'title': 'Followers',
2019-12-03 01:06:36 +00:00
'value': profile_stats.followers_count,
'url': url('user-profile-followers', {'user': profile_user.user_id}),
2019-06-06 20:18:31 +00:00
'active': profile_mode == 'followers',
},
{
'title': 'Topics',
2019-12-03 01:06:36 +00:00
'value': profile_stats.forum_topic_count,
'url': url('user-profile-forum-topics', {'user': profile_user.user_id}),
2019-06-06 20:18:31 +00:00
'active': profile_mode == 'forum-topics',
},
{
'title': 'Posts',
2019-12-03 01:06:36 +00:00
'value': profile_stats.forum_post_count,
'url': url('user-profile-forum-posts', {'user': profile_user.user_id}),
2019-06-06 20:18:31 +00:00
'active': profile_mode == 'forum-posts',
},
{
'title': 'Comments',
2019-12-03 01:06:36 +00:00
'value': profile_stats.comments_count,
2019-06-06 20:18:31 +00:00
},
{
'title': 'Changes',
2019-12-03 01:06:36 +00:00
'value': profile_stats.changelog_count,
2019-06-06 20:18:31 +00:00
},
] %}
{% else %}
{% set image = url('user-avatar', {'user': 0, 'res': 240}) %}
2019-06-09 22:10:59 +00:00
{% set manage_link = url('manage-users') %}
2019-06-06 20:18:31 +00:00
{% set profile_is_editing = false %}
{% set profile_notices = [] %}
{% endif %}