mirror of https://github.com/interlegis/sapl.git
ulyssesBML
4 years ago
8 changed files with 222 additions and 3 deletions
@ -0,0 +1,29 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.11.29 on 2020-08-12 23:59 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
import django.db.models.deletion |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('parlamentares', '0031_auto_20200407_1406'), |
|||
('comissoes', '0025_auto_20200605_1051'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.CreateModel( |
|||
name='PresencaReuniaoComissao', |
|||
fields=[ |
|||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
|||
('parlamentar', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='parlamentares.Parlamentar')), |
|||
('reuniao', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='presencareuniaocomissao_set', to='comissoes.Reuniao')), |
|||
], |
|||
options={ |
|||
'verbose_name': 'Presença em Reunião de Comissão', |
|||
'verbose_name_plural': 'Presenças em Reuniões de Comissão', |
|||
}, |
|||
), |
|||
] |
@ -0,0 +1,85 @@ |
|||
{% extends "crud/detail.html" %} |
|||
{% load i18n %} |
|||
{% load common_tags %} |
|||
|
|||
{% block actions %}{% endblock %} |
|||
|
|||
{% block detail_content %} |
|||
{% if perms|get_add_perm:view %} |
|||
<form method="POST"> |
|||
{% csrf_token %} |
|||
<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> |
|||
<br /> |
|||
<div class="controls "> |
|||
{% for parlamentar, check in view.get_presencas %} |
|||
{% if parlamentar.ativo %} |
|||
<div class="checkbox"> |
|||
<label for="id_presenca_{{forloop.counter}}"> |
|||
<input type="checkbox" id="id_presenca_{{forloop.counter}}" name="presenca_ativos" value="{{ parlamentar.id }}" |
|||
{% if check %} checked {% endif %}> |
|||
{{ parlamentar.nome_parlamentar }} / {% if parlamentar|filiacao_data_filter:object.data_inicio %} {{ parlamentar|filiacao_data_filter:object.data_inicio }} {% else %} Sem partido {% endif %} |
|||
</label> |
|||
</div> |
|||
{% else %} |
|||
<div class="checkbox inativos" style="display:none;"> |
|||
<label for="id_presenca_{{forloop.counter}}" class="inativos" style="display:none;"> |
|||
<input type="checkbox" id="id_presenca_{{forloop.counter}}" name="presenca_inativos" value="{{ parlamentar.id }}" |
|||
{% if check %} checked {% endif %}> |
|||
{{ parlamentar.nome_parlamentar }} / {% if parlamentar|filiacao_data_filter:object.data_inicio %} {{ parlamentar|filiacao_data_filter:object.data_inicio }} {% else %} Sem partido {% endif %} |
|||
</label> |
|||
</div> |
|||
{% endif %} |
|||
{% endfor %} |
|||
</div> |
|||
<br /> |
|||
<input type="submit" value="Salvar" class="btn btn-primary" /> |
|||
</form> |
|||
|
|||
{% else %} |
|||
|
|||
<div class="row"> |
|||
<div class="col-md-6"> |
|||
<h2>Parlamentares presentes |
|||
</div> |
|||
</div> |
|||
<br /> |
|||
|
|||
{% for parlamentar, check in view.get_presencas %} |
|||
{% if check %} |
|||
<div class="row"> |
|||
<div class="col-md-6"> |
|||
<label for="parlamentar"> - {{ parlamentar.nome_parlamentar }} / {% if parlamentar|filiacao_data_filter:object.data_inicio %} {{ parlamentar|filiacao_data_filter:object.data_inicio }} {% else %} Sem partido {% endif %} |
|||
</label> |
|||
</div> |
|||
</div> |
|||
{% endif %} |
|||
{% endfor %} |
|||
{% endif %} |
|||
{% endblock detail_content %} |
|||
|
|||
{% block extra_js %} |
|||
<script language="JavaScript"> |
|||
function checkAll(event) { |
|||
$('[name=presenca_ativos]').each(function () { |
|||
$(this).prop('checked', event.target.checked ? null : 'checked'); |
|||
$(this).trigger('click'); |
|||
}); |
|||
if (($('[name=ativos]').is(':checked')) == false) { |
|||
$('[name=presenca_inativos]').each(function () { |
|||
$(this).prop('checked', event.target.checked ? null : 'checked'); |
|||
$(this).trigger('click'); |
|||
}); |
|||
} |
|||
} |
|||
|
|||
function escondeInativos() { |
|||
$(".inativos").toggle(); |
|||
} |
|||
</script> |
|||
{% endblock %} |
Loading…
Reference in new issue