3527b0a75b
* New user model (used Django's AbstractBaseUser) * Renamed the app to users * removed person api See #861 Fixed #576 #478
19 lines
404 B
HTML
19 lines
404 B
HTML
{% load i18n %}
|
|
|
|
<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 %}
|
|
{% endif %}
|
|
</p>
|