mirror of https://github.com/interlegis/sapl.git
Eduardo Edson Batista Cordeiro Alves
8 years ago
2 changed files with 67 additions and 0 deletions
@ -0,0 +1,62 @@ |
|||
{% extends "crud/detail.html" %} |
|||
{% load i18n %} |
|||
{% block actions %} {% endblock %} |
|||
|
|||
{% block detail_content %} |
|||
<form method="POST"> |
|||
{% csrf_token %} |
|||
<fieldset class="form-group"> |
|||
<legend>Escolha da Legislatura e da Sessão Legislativa</legend> |
|||
<div class="row"> |
|||
<div class="col-md-6"> |
|||
<label>Escolha uma Legislatura</label> |
|||
<select name="legislatura" class="form-control" onChange="form.submit();"> |
|||
{% for l in legislaturas %} |
|||
<option value="{{l.id}}" {% if l == legislatura_selecionada %} selected {% endif %}> |
|||
{{l}} |
|||
</option> |
|||
{% endfor %} |
|||
</select> |
|||
</div> |
|||
<div class="col-md-6"> |
|||
<label>Escolha uma Sessão Legislativa</label> |
|||
<select name="sessao" class="form-control" onChange="form.submit();"> |
|||
{% for s in sessoes %} |
|||
<option value="{{s.id}}" {% if s == sessao_selecionada %} selected {% endif %}> |
|||
{{s}} |
|||
</option> |
|||
{% endfor %} |
|||
</select> |
|||
</div> |
|||
</div> |
|||
</fieldset> |
|||
<br /> |
|||
<fieldset class="form-group"> |
|||
<legend>Composição da Mesa Diretora</legend> |
|||
<table class="table table-striped table-hover table-link-ordering"> |
|||
<thead> |
|||
<tr> |
|||
<th></th> |
|||
<th>Nome do Parlamentar</th> |
|||
<th>Partido</th> |
|||
<th>Cargo</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
{% for p in composicao_mesa %} |
|||
<tr> |
|||
{% if p.parlamentar.fotografia %} |
|||
<td><img class="img-responsive" height="60" width="60" src="{{ p.parlamentar.fotografia.url }}"></td> |
|||
{% else %} |
|||
<td></td> |
|||
{% endif %} |
|||
<td>{{p.parlamentar.nome_parlamentar}}</td> |
|||
<td>TODO</td> |
|||
<td>{{p.cargo}}</td> |
|||
</tr> |
|||
{% endfor %} |
|||
</tbody> |
|||
</table> |
|||
</fieldset> |
|||
</form> |
|||
{% endblock detail_content %} |
Loading…
Reference in new issue