OpenSlides/openslides/users/templates/users/user_slide.html
Oskar Hahn 3527b0a75b Refactory of the participant app
* New user model (used Django's AbstractBaseUser)
* Renamed the app to users
* removed person api

See #861

Fixed #576 #478
2014-10-12 10:06:54 +02:00

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>