|
|
|
@ -5,6 +5,46 @@
|
|
|
|
|
<title>{{ user.displayName }}</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
Tagság kezdete: {{ user.registeredAt|date('Y-m-d') }}
|
|
|
|
|
<strong>Tagság kezdete</strong>: {{ user.registeredAt|date('Y-m-d') }}<br />
|
|
|
|
|
{% if is_granted('ROLE_ADMIN') %}
|
|
|
|
|
<strong>Felhasználónév</strong>: {{ user.username }}<br />
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if is_granted('ROLE_ADMIN') or (user.userData and user.userData.emailPublic) %}
|
|
|
|
|
<strong>E-mail</strong>: {{ user.email }}<br />
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if user.userData and (is_granted('ROLE_ADMIN') or (user.userData.realNamePublic and (user.userData.realName == ''))) %}
|
|
|
|
|
<strong>Valódi név</strong>: {{ user.userData.realName }}<br />
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if user.userData and user.userData.msnAddress != '' and (is_granted('ROLE_ADMIN') or user.userData.msnAddressPublic) %}
|
|
|
|
|
<strong>MSN cím</strong>: {{ user.userData.msnAddress }}<br />
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if user.userData and user.userData.googleTalk != '' and (is_granted('ROLE_ADMIN') or user.userData.googleTalkPublic) %}
|
|
|
|
|
<strong>Google Talk cím</strong>: {{ user.userData.googleTalk }}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if user.userData and user.userData.skype != '' and (is_granted('ROLE_ADMIN') or user.userData.skypePublic) %}
|
|
|
|
|
<strong>Skype név</strong>: {{ user.userData.skypePublic }}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if user.userData and user.userData.phoneNumber != '' and (is_granted('ROLE_ADMIN') or user.userData.phoneNumberPublic) %}
|
|
|
|
|
<strong>Telefonszám</strong>: {{ user.userData.phoneNumber }}<br />
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if user.userData and user.userData.selfDescription != '' %}
|
|
|
|
|
<strong>Leírás</strong>: {{ user.userData.selfDescription }}<br />
|
|
|
|
|
{% endif %}
|
|
|
|
|
<strong>Csoportok</strong>:<br />
|
|
|
|
|
{% 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 }}<br />
|
|
|
|
|
{#% endif %#}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
{% if groupCount == 0 %}
|
|
|
|
|
Egy csoportnak sem tagja.<br />
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if is_granted('ROLE_ADMIN') %}
|
|
|
|
|
<strong>Jóváhagyta</strong>: {{ user.acceptedBy.displayName }}<br />
|
|
|
|
|
<strong>Utolsó bejelentkezés</strong>: {{ user.lastLoginAt|date('Y-m-d H:i') }}<br />
|
|
|
|
|
<strong>Jogok</strong>:
|
|
|
|
|
{% endif %}
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|