59 lines
2.2 KiB
HTML
59 lines
2.2 KiB
HTML
{% extends "webapp_base.html" %}
|
|
{% block content %}
|
|
|
|
{% load i18n %}
|
|
|
|
<div class="contact_div">
|
|
<div class="container">
|
|
<!--<div class="row">
|
|
<div class="col">-->
|
|
<h2>{% trans "Contact" %}</h2>
|
|
<div>
|
|
{% if all_roles %}
|
|
{% load static %}
|
|
<h3>Kaikki Roolit</h3>
|
|
<table>
|
|
{% for role in all_roles %}
|
|
<tr>
|
|
<td>
|
|
<!--Haetaan kuva-->
|
|
<img src="static/img/missing.png">
|
|
</td>
|
|
<td>
|
|
<p class="rooli-otsikko">{{role}}</h3>
|
|
<p class="rooli-toimari">{{ role.official.first_name }} {{ rooli.official.last_name }}</p>
|
|
{{ role.official.email }}
|
|
{{ role.official.phone_number }}
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% else%}
|
|
<p>Ei rooleja</p>
|
|
{% endif %}
|
|
|
|
{% if all_committees %}
|
|
{% load static %}
|
|
<h3>Kaikki Toimikunnat</h3>
|
|
{% for com in all_committees %}
|
|
<p>{{committee.name}}</p>
|
|
{% if roles_list %}
|
|
{% for role in roles_list %}
|
|
<p>{{role.name}}</p>
|
|
{% endfor %}
|
|
{% else %}
|
|
<p>Ei ole rooleja tällä toimikunnalla</p>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% else%}
|
|
<p>Ei Toimikuntia</p>
|
|
{% endif %}
|
|
</div>
|
|
<!--</div>
|
|
</div>-->
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|