{% extends 'default/layout.html.twig' %} {% block title %}{{ 'User'|trans }} #{{ user.id }} - {{ name }}{% endblock %} {% block main_content %}
| {{ 'Common'|trans }} | |
| {{ 'Address'|trans }} | {{ user.address }} |
| {{ 'Joined'|trans }} | {{ user.added }} |
| {{ 'Joined'|trans }} | {{ user.added }} |
| {{ 'Access'|trans }} | |
| {{ 'Status'|trans }} | {% if user.status %} {{ 'active'|trans }} {% else %} {{ 'disabled'|trans }} {% endif %} |
| {{ 'Approved'|trans }} | {% if user.approved %} {{ 'yes'|trans }} {% else %} {{ 'no'|trans }} {% endif %} |
| {{ 'Moderator'|trans }} | {% if user.moderator %} {{ 'yes'|trans }} {% else %} {{ 'no'|trans }} {% endif %} |
| {{ 'Settings'|trans }} | |
| {{ 'Interface'|trans }} | {{ user.locale|locale_name(user.locale)|u.title }} |
| {{ 'Content filter'|trans }} | {% for i, locale in user.locales %}{% if i > 0 %},{% endif %} {{ locale|locale_name(locale)|u.title }}{% endfor %} |