mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
674 B
27 lines
674 B
<fieldset>
|
|
<legend>Oradores do Expediente</legend>
|
|
{% if oradores %}
|
|
<table class="table table-striped table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Parlamentar</th>
|
|
<th>Discurso</th>
|
|
<th>Observação</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for o in oradores %}
|
|
<tr>
|
|
<td>
|
|
<b>{{o.numero_ordem}}</b> - {{o.parlamentar}}</
|
|
</td>
|
|
<td>{{o.url_discurso}}</td>
|
|
<td><b>{{o.observacao}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% else %}
|
|
<div class="col-md-12"><strong>Não há oradores de expediente para essa Sessão.</strong></div>
|
|
{% endif %}
|
|
</fieldset>
|