2012-11-06 00:02:44 +01:00
|
|
|
{% extends "base-projector.html" %}
|
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
{% load tags %}
|
|
|
|
|
|
|
|
{% block title %}{{ block.super }} - {{ title }}{% endblock %}
|
|
|
|
|
|
|
|
{% 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 %}
|
|
|
|
{{ shown_user.groups.all|join:", " }}
|
|
|
|
{% 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 %}
|