2013-08-04 12:59:11 +02:00
|
|
|
{% load i18n %}
|
2013-09-07 10:14:54 +02:00
|
|
|
|
|
|
|
<h1>
|
|
|
|
{{ shown_user.clean_name }}<br>
|
|
|
|
<small>{{ shown_user.structure_level }}</small>
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
{% if shown_user.committee %}
|
|
|
|
<p>{{ shown_user.committee }}</p>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<p>
|
|
|
|
{% if shown_user.groups.all %}
|
|
|
|
{% for group in shown_user.groups.all %}
|
|
|
|
{% trans group.name %}{% if not forloop.last %}<br> {% endif %}
|
|
|
|
{% endfor %}
|
2013-08-04 12:59:11 +02:00
|
|
|
{% endif %}
|
2013-09-07 10:14:54 +02:00
|
|
|
</p>
|