2018-10-05 16:13:30 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
|
|
|
|
2019-11-06 00:20:53 +00:00
|
|
|
<h1><strong>Comités</strong></h1>
|
|
|
|
<div style="height:20px;"></div>
|
|
|
|
{% for comite in comites %}
|
|
|
|
<h2>{{comite.titulo}}</h2>
|
2019-11-06 15:22:15 +00:00
|
|
|
<ul class="comite">
|
2019-11-06 00:20:53 +00:00
|
|
|
{% for person in comite.integrantes %}
|
|
|
|
<li>
|
|
|
|
{% if person.web %}<a href="{{person.web}}" target="_blank" rel="noopener noreferrer">{% endif %}
|
2019-11-06 15:22:15 +00:00
|
|
|
{{person.nombre}} ( {{person.afiliacion}} ){%if person.rol %}<b> - {{person.rol}}</b>{%endif%}
|
2019-11-06 00:20:53 +00:00
|
|
|
{{ person.web ? '</a>':'' }}
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
<hr class="separador" style="margin-top:20px;">
|
|
|
|
{% endfor %}
|
2018-10-05 16:13:30 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|