misuzu/templates/profile/master.twig

47 lines
1.5 KiB
Twig
Raw Normal View History

{% extends 'master.twig' %}
2019-12-03 01:06:36 +00:00
{% if profile_user is defined %}
2020-05-18 21:27:34 +00:00
{% set image = url('user-avatar', {'user': profile_user.id, 'res': 200}) %}
{% set manage_link = url('manage-user', {'user': profile_user.id}) %}
2020-06-07 20:37:03 +00:00
{% if profile_user.hasBackground %}
{% set site_background = profile_user.backgroundInfo %}
{% endif %}
2019-06-06 20:18:31 +00:00
{% set stats = [
{
'title': 'Joined',
'is_date': true,
2020-06-07 20:37:03 +00:00
'value': profile_user.createdTime,
2019-06-06 20:18:31 +00:00
},
{
'title': 'Last seen',
'is_date': true,
2020-06-07 20:37:03 +00:00
'value': profile_user.activeTime,
2019-06-06 20:18:31 +00:00
},
{
'title': 'Topics',
2019-12-03 01:06:36 +00:00
'value': profile_stats.forum_topic_count,
2020-05-18 21:27:34 +00:00
'url': url('user-profile-forum-topics', {'user': profile_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,
2020-05-18 21:27:34 +00:00
'url': url('user-profile-forum-posts', {'user': profile_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 %}