{# vim: ft=htmljinja #} {{ user.displayName }} Tagság kezdete: {{ user.registeredAt|date('Y-m-d') }}
{% if is_granted('ROLE_ADMIN') %} Felhasználónév: {{ user.username }}
{% endif %} {% if is_granted('ROLE_ADMIN') or (user.userData and user.userData.emailPublic) %} E-mail: {{ user.email }}
{% endif %} {% if user.userData and (is_granted('ROLE_ADMIN') or (user.userData.realNamePublic and (user.userData.realName == ''))) %} Valódi név: {{ user.userData.realName }}
{% endif %} {% if user.userData and user.userData.msnAddress != '' and (is_granted('ROLE_ADMIN') or user.userData.msnAddressPublic) %} MSN cím: {{ user.userData.msnAddress }}
{% endif %} {% if user.userData and user.userData.googleTalk != '' and (is_granted('ROLE_ADMIN') or user.userData.googleTalkPublic) %} Google Talk cím: {{ user.userData.googleTalk }}
{% endif %} {% if user.userData and user.userData.skype != '' and (is_granted('ROLE_ADMIN') or user.userData.skypePublic) %} Skype név: {{ user.userData.skype}}
{% endif %} {% if user.userData and user.userData.phoneNumber != '' and (is_granted('ROLE_ADMIN') or user.userData.phoneNumberPublic) %} Telefonszám: {{ user.userData.phoneNumber }}
{% endif %} {% if user.userData and user.userData.selfDescription != '' %} Leírás:
{{ user.userData.selfDescription }}
{% endif %} Csoportok:
{% set groupCount = 0 %} {% for group in user.allGroups %} {#% if is_granted('ROLE_ADMIN') or group.isMember(app.user) or group.open %#} {% set groupCount = groupCount + 1 %} {{ group.name }}
{#% endif %#} {% endfor %} {% if groupCount == 0 %} Egy csoportnak sem tagja.
{% endif %} {% if is_granted('ROLE_ADMIN') %} Jóváhagyta: {{ user.acceptedBy.displayName }}
Utolsó bejelentkezés: {{ user.lastLoginAt|date('Y-m-d H:i') }}
Jogok:
{% for role in user.roles %} {{ role.shortDescription }}
{% endfor %} {% endif %}