Browse Source

Adiciona filtro para parlamentares ativos

pull/3323/head
Vinícius Cantuária 5 years ago
parent
commit
956c463d91
  1. 2
      sapl/templates/base/RelatorioPresencaSessao_filter.html

2
sapl/templates/base/RelatorioPresencaSessao_filter.html

@ -45,6 +45,7 @@
</thead>
<tbody>
{% for p in parlamentares %}
{% if not exibir_somente_titular or p.titular %}
<tr>
<td><b> {{p.parlamentar}}</b> / {{p.parlamentar|filiacao_intervalo_filter:date_range|default:"Sem Partido"}}</td>
<td>{% if p.titular %} Sim {% else %} Não {% endif %}</td>
@ -56,6 +57,7 @@
<td>{{p.ordemdia_porc}}</td>
{% endif %}
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>

Loading…
Cancel
Save