mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
4.2 KiB
118 lines
4.2 KiB
{% extends "crud/detail.html" %}
|
|
{% load i18n crispy_forms_tags %}
|
|
{% block actions %}{% endblock %}
|
|
{% block sections_nav %} {% include 'materia/em_lote/subnav.html'%} {% 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>
|
|
{% if unidade_local|length > 1 %}<option></option>{% endif %}
|
|
<select name="unidade_tramitacao_local" class="form-control" required="True">
|
|
{% for u in unidade_local %} <option value="{{u.id}}">{{u}}</option> {% endfor %}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
<label>Unidade Destino*</label>
|
|
<option></option>
|
|
<select name="unidade_tramitacao_destino" class="form-control" required="True">
|
|
{% for u in unidade_destino %} <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 da 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 %}
|
|
|