mirror of https://github.com/interlegis/sapl.git
Eduardo Edson Batista Cordeiro Alves
9 years ago
4 changed files with 173 additions and 5 deletions
@ -0,0 +1,79 @@ |
|||||
|
{% extends "materia/materia_detail.html" %} |
||||
|
{% load i18n %} |
||||
|
{% load crispy_forms_tags %} |
||||
|
|
||||
|
{% block detail_content %} |
||||
|
<fieldset> |
||||
|
<legend>Matéria Legislativa</legend> |
||||
|
<ul class="small-block-grid-3 medium-block-grid-3 large-block-grid-3"> |
||||
|
<li>Tipo: <b>{{materia.tipo.sigla}}</b></li> |
||||
|
<li>Número: <b>{{materia.numero}}</b></li> |
||||
|
<li>Ano: <b>{{materia.ano}}</b></li> |
||||
|
</ul> |
||||
|
Ementa: <b>{{materia.ementa}}</b> |
||||
|
|
||||
|
<fieldset> |
||||
|
<legend>Autorias</legend> |
||||
|
<table> |
||||
|
<tr> |
||||
|
<th>Nome Autor</th> |
||||
|
<th>Tipo Autor</th> |
||||
|
<th>Primeiro Autor</th> |
||||
|
</tr> |
||||
|
{% for a in autorias %} |
||||
|
<tr> |
||||
|
<td><a href="">{{a.autor}}</a></td> |
||||
|
<td>{{a.autor.tipo.descricao}}</td> |
||||
|
<td>{{a.primeiro_autor|yesno:"Sim,Não"}}</td> |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
</table> |
||||
|
</fieldset> |
||||
|
|
||||
|
<fieldset> |
||||
|
<legend>Adicionar Autoria</legend> |
||||
|
{% if error %} <h5 align="center"><font color="#FF0000">{{ error }}</font></h5> {% endif %} |
||||
|
|
||||
|
<ul class="small-block-grid-3 medium-block-grid-3 large-block-grid-3"> |
||||
|
<li>Tipo do Autor</li> |
||||
|
<li>Nome Autor</li> |
||||
|
<li>Primeiro Autor</li> |
||||
|
</ul> |
||||
|
<form method="POST"> |
||||
|
{% csrf_token %} |
||||
|
|
||||
|
<ul class="small-block-grid-3 medium-block-grid-3 large-block-grid-3"> |
||||
|
<li> |
||||
|
<select name="tipo_autor" onChange="form.submit();"> |
||||
|
{% for tipo in tipo_autores %} |
||||
|
<option value="{{tipo.id}}" {% if tipo.id == tipo_autor_id %} selected {% endif %}> |
||||
|
{{tipo.descricao}} |
||||
|
</option> |
||||
|
{% endfor %} |
||||
|
</select> |
||||
|
</li> |
||||
|
|
||||
|
<li> |
||||
|
<select name="nome_autor"> |
||||
|
{% for a in autores %} |
||||
|
{% if a.tipo.id == tipo_autor_id %} |
||||
|
<option value="{{a.id}}"> |
||||
|
{{a}} |
||||
|
</option> |
||||
|
{% endif %} |
||||
|
{% endfor %} |
||||
|
</select> |
||||
|
</li> |
||||
|
|
||||
|
<li> |
||||
|
<select name="primeiro_autor"> |
||||
|
<option value="1">Sim</option> |
||||
|
<option value="0" selected>Não</option> |
||||
|
</select> |
||||
|
</li> |
||||
|
</ul> |
||||
|
<input type="submit" name="salvar" value="Salvar" class="button primary"> |
||||
|
</form> |
||||
|
</fieldset> |
||||
|
</fieldset> |
||||
|
{% endblock %} |
Loading…
Reference in new issue