mirror of https://github.com/interlegis/sapl.git
Browse Source
* fix #2415 co-authored-by: Victor Fabre <victorfabre@me.com> * criada url anexada-em-lote * Inserindo anexada em lote em subnav de materiapull/2601/head
Ricardo Lima Canela
6 years ago
committed by
Edward Ribeiro
5 changed files with 182 additions and 0 deletions
@ -0,0 +1,14 @@ |
|||||
|
{% extends "crud/list.html" %} |
||||
|
{% load i18n %} |
||||
|
{% load common_tags %} |
||||
|
|
||||
|
|
||||
|
{% block more_buttons %} |
||||
|
|
||||
|
{% if perms|get_add_perm:view %} |
||||
|
<a href="{% url 'sapl.materia:anexada_em_lote' root_pk %}" class="btn btn-outline-primary"> |
||||
|
{% trans "Adicionar Anexada em Lote" %} |
||||
|
</a> |
||||
|
{% endif %} |
||||
|
|
||||
|
{% endblock more_buttons %} |
@ -0,0 +1,83 @@ |
|||||
|
{% extends "crud/detail.html" %} |
||||
|
{% load i18n crispy_forms_tags %} |
||||
|
{% block actions %}{% endblock %} |
||||
|
{% block detail_content %} |
||||
|
|
||||
|
{% if not show_results %} |
||||
|
{% crispy filter.form %} |
||||
|
{% endif %} |
||||
|
|
||||
|
{% if show_results %} |
||||
|
{% 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 %} |
||||
|
<form method="POST" enctype="multipart/form-data"> |
||||
|
{% csrf_token %} |
||||
|
|
||||
|
<fieldset> |
||||
|
<div class="row"> |
||||
|
|
||||
|
<div class="col-md-4"> |
||||
|
<div class="form-group"> |
||||
|
<label>Data Anexação*</label> |
||||
|
<input type="text" name="data_anexacao" class="form-control dateinput" required="True"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4"> |
||||
|
<div class="form-group"> |
||||
|
<label>Data Desanexação</label> |
||||
|
<input type="text" name="data_desanexacao" class="form-control dateinput"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
</fieldset> |
||||
|
|
||||
|
<br /> |
||||
|
|
||||
|
<fieldset> |
||||
|
<legend>Matérias para Anexar em Lote</legend> |
||||
|
<table class="table table-striped table-hover"> |
||||
|
<div class="controls"> |
||||
|
<div class="checkbox"> |
||||
|
<label for="id_check_all"> |
||||
|
<input type="checkbox" id="id_check_all" onchange="checkAll(event)" /> Marcar/Desmarcar Todos |
||||
|
</label> |
||||
|
</div> |
||||
|
</div> |
||||
|
<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> |
||||
|
{% else %} |
||||
|
<tr><td><h3 style="text-align: right;">Nenhuma matéria encontrada.</h3></td></tr> |
||||
|
{% endif %} |
||||
|
{% endif %} |
||||
|
{% endblock detail_content %} |
||||
|
{% block extra_js %} |
||||
|
<script language="JavaScript"> |
||||
|
function checkAll(event) { |
||||
|
$('[name=materia_id]').each(function() { |
||||
|
$(this).prop('checked', event.target.checked ? 'checked': null); |
||||
|
$(this).trigger('click'); |
||||
|
}); |
||||
|
} |
||||
|
</script> |
||||
|
{% endblock %} |
Loading…
Reference in new issue