{% extends 'user/master.twig' %} {% from 'macros.twig' import container_title %} {% from 'user/macros.twig' import user_profile_warning %} {% from '_layout/input.twig' import input_hidden, input_csrf, input_text, input_checkbox, input_file, input_file_raw, input_select %} {% set image = '/profile.php?u=' ~ profile.user_id ~ '&m=avatar' %} {% set canonical_url = '/profile.php?u=' ~ profile.user_id %} {% set title = 'Profile of ' ~ profile.username %} {% 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': 'Topics', 'value': profile.forum_topic_count, }, { 'title': 'Posts', 'value': profile.forum_post_count, }, { 'title': 'Comments', 'value': profile.comments_count, }, { 'title': 'Changes', 'value': profile.changelog_count, }, ] %} {% block content %} {% if is_editing %}