mirror of https://github.com/interlegis/sapl.git
committed by
GitHub
22 changed files with 401 additions and 178 deletions
@ -0,0 +1,85 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.11.20 on 2019-04-15 19:35 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('sessao', '0036_auto_20190412_1106'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='resumoordenacao', |
||||
|
name='decimo', |
||||
|
field=models.CharField(default='mat_o_d', max_length=50), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='resumoordenacao', |
||||
|
name='decimo_primeiro', |
||||
|
field=models.CharField(default='v_n_mat_o_d', max_length=50), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='resumoordenacao', |
||||
|
name='decimo_quarto', |
||||
|
field=models.CharField(default='ocorr_sessao', max_length=50), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='resumoordenacao', |
||||
|
name='decimo_segundo', |
||||
|
field=models.CharField(default='oradores_o_d', max_length=50), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='resumoordenacao', |
||||
|
name='decimo_terceiro', |
||||
|
field=models.CharField(default='oradores_expli', max_length=50), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='resumoordenacao', |
||||
|
name='nono', |
||||
|
field=models.CharField(default='lista_p_o_d', max_length=50), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='resumoordenacao', |
||||
|
name='oitavo', |
||||
|
field=models.CharField(default='oradores_exped', max_length=50), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='resumoordenacao', |
||||
|
name='primeiro', |
||||
|
field=models.CharField(default='id_basica', max_length=50), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='resumoordenacao', |
||||
|
name='quarto', |
||||
|
field=models.CharField(default='lista_p', max_length=50), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='resumoordenacao', |
||||
|
name='quinto', |
||||
|
field=models.CharField(default='exp', max_length=50), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='resumoordenacao', |
||||
|
name='segundo', |
||||
|
field=models.CharField(default='cont_mult', max_length=50), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='resumoordenacao', |
||||
|
name='setimo', |
||||
|
field=models.CharField(default='v_n_mat_exp', max_length=50), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='resumoordenacao', |
||||
|
name='sexto', |
||||
|
field=models.CharField(default='mat_exp', max_length=50), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='resumoordenacao', |
||||
|
name='terceiro', |
||||
|
field=models.CharField(default='mesa_d', max_length=50), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,16 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.11.20 on 2019-04-15 21:00 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('sessao', '0037_auto_20190415_1635'), |
||||
|
('sessao', '0037_auto_20190415_1324'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
] |
||||
@ -1,9 +1,11 @@ |
|||||
|
{% load common_tags %} |
||||
|
|
||||
<fieldset> |
<fieldset> |
||||
<legend>Mesa Diretora</legend> |
<legend>Mesa Diretora</legend> |
||||
<div class="row"> |
<div class="row"> |
||||
{% for m in mesa %} |
{% for m in mesa %} |
||||
<div class="col-md-12"><b>{{m.cargo}}: |
<div class="col-md-12"><b>{{m.cargo}}: |
||||
</b>{{m.parlamentar.nome_parlamentar}} / {% if m.parlamentar.filiacao_atual %} {{ m.parlamentar.filiacao_atual }} {% else %} Sem partido {% endif %} |
</b>{{m.parlamentar.nome_parlamentar}} / {% if p.parlamentar|filiacao_data_filter:object.data_inicio %} {{ m.parlamentar|filiacao_data_filter:object.data_inicio }} {% else %} Sem partido {% endif %} |
||||
</div> |
</div> |
||||
{% endfor %} |
{% endfor %} |
||||
</div> |
</div> |
||||
|
|||||
Loading…
Reference in new issue