mirror of https://github.com/interlegis/sapl.git
Eduardo Edson Batista Cordeiro Alves
8 years ago
4 changed files with 18 additions and 183 deletions
@ -1,123 +0,0 @@ |
|||||
{% extends "crud/detail.html" %} |
|
||||
{% load i18n crispy_forms_tags %} |
|
||||
{% block actions %}{% endblock %} |
|
||||
{% block sections_nav %} |
|
||||
<ul class="nav nav-pills navbar-right"> |
|
||||
<li class="active"><a href="{% url 'sapl.materia:primeira_tramitacao_em_lote' %}">Primeira Tramitação</a></li> |
|
||||
<li class=""><a href="{% url 'sapl.materia:tramitacao_em_lote' %}">Tramitação em Lote</a></li> |
|
||||
</ul> |
|
||||
{% endblock sections_nav %} |
|
||||
{% block detail_content %} |
|
||||
|
|
||||
{% if not filter_url %} |
|
||||
{% crispy filter.form %} |
|
||||
{% endif %} |
|
||||
|
|
||||
{% if filter_url %} |
|
||||
{% if object_list|length > 0 %} |
|
||||
{% if object_list|length == 1 %} |
|
||||
<h3 style="text-align: right;">{% trans 'Pesquisa concluída com sucesso! Foi encontrada 1 matéria.'%}</h3> |
|
||||
{% else %} |
|
||||
<h3 style="text-align: right;">Foram encontradas {{object_list|length}} matérias.</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>1. Detalhes da tramitação:</legend> |
|
||||
|
|
||||
<div class="row"> |
|
||||
<div class="col-md-4"> |
|
||||
<label>Data da Tramitação*</label> |
|
||||
<input type="text" name="data_tramitacao" class="form-control dateinput" required="True"> |
|
||||
</div> |
|
||||
|
|
||||
<div class="col-md-4"> |
|
||||
<label>Data Encaminhamento</label> |
|
||||
<input type="text" name="data_encaminhamento" class="form-control dateinput"> |
|
||||
</div> |
|
||||
|
|
||||
<div class="col-md-4"> |
|
||||
<label>Data Fim do Prazo</label> |
|
||||
<input type="text" name="data_fim_prazo" class="form-control dateinput"> |
|
||||
</div> |
|
||||
</div> |
|
||||
|
|
||||
<div class="row"> |
|
||||
<div class="col-md-6"> |
|
||||
<label>Unidade Local*</label> |
|
||||
<select name="unidade_tramitacao_local" class="form-control" required="True"> |
|
||||
<option>----------</option> |
|
||||
{% for u in unidade_tramitacao %} <option value="{{u.id}}">{{u}}</option> {% endfor %} |
|
||||
</select> |
|
||||
</div> |
|
||||
|
|
||||
<div class="col-md-6"> |
|
||||
<label>Unidade Destino*</label> |
|
||||
<select name="unidade_tramitacao_destino" class="form-control" required="True"> |
|
||||
<option>----------</option> |
|
||||
{% for u in unidade_tramitacao %} <option value="{{u.id}}">{{u}}</option> {% endfor %} |
|
||||
</select> |
|
||||
</div> |
|
||||
</div> |
|
||||
|
|
||||
<div class="row"> |
|
||||
<div class="col-md-4"> |
|
||||
<label>Status*</label> |
|
||||
<select name="status" class="form-control" required="True"> |
|
||||
<option>----------</option> |
|
||||
{% for s in status_tramitacao %} <option value="{{s.id}}">{{s}}</option> {% endfor %} |
|
||||
</select> |
|
||||
</div> |
|
||||
|
|
||||
<div class="col-md-4"> |
|
||||
<label>Urgente?*</label> |
|
||||
<select name="urgente" class="form-control" required="True"> |
|
||||
<option>----------</option> |
|
||||
{% for u in urgente_tramitacao %} <option value="{{u|first}}">{{u|last}}</option> {% endfor %} |
|
||||
</select> |
|
||||
</div> |
|
||||
|
|
||||
<div class="col-md-4"> |
|
||||
<label>Turno</label> |
|
||||
<select name="turno" class="form-control"> |
|
||||
<option>----------</option> |
|
||||
{% for t in turnos_tramitacao %} <option value="{{t|first}}">{{t|last}}</option> {% endfor %} |
|
||||
</select> |
|
||||
</div> |
|
||||
</div> |
|
||||
|
|
||||
<div class="row"> |
|
||||
<div class="col-md-12"> |
|
||||
<label>Texto de Ação*</label> |
|
||||
<textarea name="texto" class="textarea form-control" cols="40" rows="10" required="True"></textarea> |
|
||||
</div> |
|
||||
</div> |
|
||||
</fieldset> |
|
||||
|
|
||||
<br /><br /><br /> |
|
||||
|
|
||||
<fieldset> |
|
||||
<legend>2. Selecione as matérias para primeira tramitação:</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.tipo.descricao}} {{materia.numero}}/{{materia.ano}} |
|
||||
</td> |
|
||||
</tr> |
|
||||
{% endfor %} |
|
||||
</tbody> |
|
||||
</table> |
|
||||
</fieldset> |
|
||||
<input type="submit" value="Salvar" class="btn btn-primary"S> |
|
||||
</form> |
|
||||
{% endif %} |
|
||||
{% endblock detail_content %} |
|
@ -0,0 +1,4 @@ |
|||||
|
<ul class="nav nav-pills navbar-right"> |
||||
|
<li class=""><a href="{% url 'sapl.materia:primeira_tramitacao_em_lote' %}">Primeira Tramitação</a></li> |
||||
|
<li class=""><a href="{% url 'sapl.materia:tramitacao_em_lote' %}">Tramitação em Lote</a></li> |
||||
|
</ul> |
Loading…
Reference in new issue