2012-11-06 00:02:44 +01:00
|
|
|
{% extends "base-projector.html" %}
|
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
|
2013-06-14 20:24:48 +02:00
|
|
|
{% block title %}{{ title }}{% endblock %}
|
2012-11-06 00:02:44 +01:00
|
|
|
|
|
|
|
{% block content %}
|
2012-11-21 21:05:56 +01:00
|
|
|
<div class="item_fullscreen">{{ shown_user }}
|
|
|
|
<span>
|
|
|
|
{% if shown_user.committee %}
|
|
|
|
<p>{{ shown_user.committee }}</p>
|
|
|
|
{% endif %}
|
|
|
|
<p>
|
2012-11-21 14:07:14 +01:00
|
|
|
{% if shown_user.groups.all %}
|
2013-05-30 23:25:49 +02:00
|
|
|
{% for group in shown_user.groups.all %}
|
|
|
|
{% trans group.name %}{% if not forloop.last %}, {% endif %}
|
|
|
|
{% endfor %}
|
2012-11-21 14:07:14 +01:00
|
|
|
{% endif %}
|
2012-11-06 00:02:44 +01:00
|
|
|
</p>
|
2012-11-21 21:05:56 +01:00
|
|
|
</span>
|
2012-11-06 00:02:44 +01:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|