9aed1f764d
- agenda overview: Text align right for duration column. - item summary slide: Show 'get_title_supplement' after each related agenda item. - item detail view: Add ":" in button after item content_type - projector: Show <hr> below title/subtitle line. - motion view: Check manage permission for delete version button in version history table. - motion detail view: Update version authorized badges and go to buttons. - motion list: Link warning icon to newest version. - assignment detail view: Added ballot paper pdf button. - Group slide and overview: Show members. - Use dynamic title column width in participants pdf. - Fixed missing translations in user settings form. - IE8/9 fix for projector template style. - Style linebreak and border in h1 title with css.
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>
|