mirror of https://github.com/interlegis/sapl.git
Eduardo Edson Batista Cordeiro Alves
8 years ago
committed by
GitHub
5 changed files with 187 additions and 6 deletions
@ -0,0 +1,101 @@ |
|||||
|
{% extends "crud/detail.html" %} |
||||
|
{% load i18n crispy_forms_tags %} |
||||
|
{% block actions %}{% endblock %} |
||||
|
{% block sections_nav %}{% endblock %} |
||||
|
{% block detail_content %} |
||||
|
|
||||
|
{% if not filter_url %} |
||||
|
{% crispy filter.form %} |
||||
|
{% endif %} |
||||
|
|
||||
|
{% if filter_url %} |
||||
|
{% if object_list.count > 0 %} |
||||
|
{% if object_list.count == 1 %} |
||||
|
<h3 style="text-align: right;">{% trans 'Pesquisa concluída com sucesso! Foi encontrada 1 matéria.'%}</h3> |
||||
|
{% else %} |
||||
|
<h3 style="text-align: right;">{% blocktrans with object_list.count as total_materias %}Foram encontradas {{total_materias}} matérias.{% endblocktrans %}</h3> |
||||
|
{% endif %} |
||||
|
{% else %} |
||||
|
<tr><td><h3 style="text-align: right;">Nenhuma matéria encontrada.</h3></td></tr> |
||||
|
{% endif %} |
||||
|
<form method="POST"> |
||||
|
{% csrf_token %} |
||||
|
<fieldset> |
||||
|
<legend>Documento Acessório</legend> |
||||
|
<div class="row"> |
||||
|
<div class="col-md-4"> |
||||
|
<label>Tipo*</label> |
||||
|
<select name="tipo" class="form-control" required="True"> |
||||
|
{% for t in tipos_docs %} <option>{{t}}</option> {% endfor %} |
||||
|
</select> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-md-4"> |
||||
|
<label>Nome*</label> |
||||
|
<input type="text" name="nome" class="form-control" required="True"> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-md-4"> |
||||
|
<label>Data*</label> |
||||
|
<input type="text" name="data" class="form-control dateinput" required="True"> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="row"> |
||||
|
<div class="col-md-12"> |
||||
|
<label>Autor:</label> |
||||
|
<span id="nome_autor" name="nome_autor"> </span> |
||||
|
</div> |
||||
|
|
||||
|
<div id="modal_autor" title="Selecione o Autor" align="center"> |
||||
|
<input id="q" type="text" /> <input id="pesquisar" type="submit" value="Pesquisar" class="btn btn-primary btn-sm"/> |
||||
|
<div id="div-resultado"></div> |
||||
|
<input type="submit" id="selecionar" value="Selecionar" hidden="true" /> |
||||
|
</div> |
||||
|
|
||||
|
<div class="row-fluid"> |
||||
|
<div class="col-md-0"><input id="id_autor" maxlength="50" name="autor" type="hidden" /></div> |
||||
|
<div class="col-md-2"><input type="button" name="pesquisar" value="Pesquisar Autor" class="btn btn btn-primary btn-sm" id="button-id-pesquisar"/></div> |
||||
|
<div class="col-md-10"><input type="button" name="limpar" value="Limpar Autor" class="btn btn btn-primary btn-sm" id="button-id-limpar"/></div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="row"> |
||||
|
<div class="col-md-12"> |
||||
|
<label>Ementa</label> |
||||
|
<textarea name="ementa" class="textarea form-control" cols="40" rows="10"></textarea> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="row"> |
||||
|
<div class="col-md-12"> |
||||
|
<label>Texto Integral*</label> |
||||
|
<input type="file" name="arquivo" required="True"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</fieldset> |
||||
|
|
||||
|
<br /><br /><br /> |
||||
|
|
||||
|
<fieldset> |
||||
|
<legend>Matérias para inclusão do Documento Acessório</legend> |
||||
|
<table class="table table-striped table-hover"> |
||||
|
<thead> |
||||
|
<tr><th>Matéria</th></tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
{% for materia in object_list %} |
||||
|
<tr> |
||||
|
<td> |
||||
|
<input type="checkbox" name="materia_id" value="{{materia.id}}" {% if check %} checked {% endif %}/> |
||||
|
{{materia.tipo.sigla}} {{materia.numero}}/{{materia.ano}} - {{materia.tipo.descricao}} |
||||
|
</td> |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</fieldset> |
||||
|
<input type="submit" value="Salvar" class="btn btn-primary"S> |
||||
|
</form> |
||||
|
{% endif %} |
||||
|
{% endblock detail_content %} |
Loading…
Reference in new issue