{% 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|trans }} |
| {{ 'Content filter'|trans }} |
{% for locale in user.locales %}
{{ locale|trans }}
{% endfor %}
|