{% extends "parlamentares/parlamentares_detail.html" %} {% load i18n %} {% load crispy_forms_tags %} {% block detail_content %} <fieldset> <legend>Selecione o Período</legend> <form method="POST"> {% csrf_token %} <select name="periodo" onChange="form.submit();"> {% for l in legislaturas %} <option value="{{l.id}}" {% if l.id == legislatura_id %} selected {% endif %}> {{l}} </option> {% endfor %} </select> </form> </fieldset> <fieldset> <legend>Parlamentares</legend> <table> <tr> <th>Nome do Parlamentar</th> <th>Partido</th> <th>Ativo?</th> </tr> {% for p in parlamentares %} <tr> <td><a href="{% url 'parlamentares_editar' p.id %}"> {{p.nome}} </a></td> <td>{{p.partido}}</td> <td>{{p.ativo|yesno:"Sim,Não"}}</td> </tr> {% endfor %} </table> </fieldset> {% endblock %}