mirror of https://github.com/interlegis/sapl.git
LeandroRoberto
9 years ago
10 changed files with 338 additions and 29 deletions
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import models, migrations |
|||
import materia.models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('materia', '0003_auto_20150729_1717'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='materialegislativa', |
|||
name='texto_original', |
|||
field=models.FileField(null=True, blank=True, verbose_name='Texto original (PDF)', upload_to=materia.models.texto_upload_path), |
|||
), |
|||
] |
@ -0,0 +1,46 @@ |
|||
{% extends "sessao/sessaoplenaria_detail.html" %} |
|||
{% load i18n %} |
|||
|
|||
{% block detail_content %} |
|||
<div> |
|||
{{ error_message }} |
|||
</div> |
|||
<form method="POST"> |
|||
{% csrf_token %} |
|||
Data da Sessão: {{data_sessao}}</br> |
|||
<input type="hidden" id="data_sessao" name="data_sessao" length="10" maxlength="10" value="{{data_sessao}}" /> |
|||
Tipo da Sessão: |
|||
<select id="tipo_sessao" name="tipo_sessao" > |
|||
<option value=""></option> |
|||
{% for tipo in tipo_sessao %} |
|||
<option value="{{tipo.id}}">{{tipo.nome}}</option> |
|||
{% endfor %} |
|||
</select> |
|||
Número Ordem: |
|||
<input type="text" id="numero_ordem" name="numero_ordem"/> |
|||
</br> |
|||
Tipo Matéria: |
|||
<select id="tipo_materia" name="tipo_materia"> |
|||
<option value=""></option> |
|||
{% for tipo in tipo_materia %} |
|||
<option value="{{tipo.id}}">{{tipo.descricao}}</option> |
|||
{% endfor %} |
|||
</select> |
|||
Número Matéria: |
|||
<input type="text" id="numero_materia" name="numero_materia"/> |
|||
Ano Matéria: |
|||
<input type="text" id="ano_materia" name="ano_materia" value="{{ano_materia}}" /> |
|||
|
|||
Tipo Votação: |
|||
<select id="tipo_votacao" name="tipo_votacao"> |
|||
<option value=""></option> |
|||
{% for id, descricao in tipo_votacao %} |
|||
<option value="{{id}}">{{descricao}}</option> |
|||
{% endfor %} |
|||
</select> |
|||
</br> |
|||
Ementa: |
|||
<textarea id="observacao" name="observacao" cols="10" rows="10"></textarea> |
|||
<input type="submit" value="Salvar" /> |
|||
</form> |
|||
{% endblock detail_content %} |
@ -0,0 +1,44 @@ |
|||
{% extends "sessao/sessaoplenaria_detail.html" %} |
|||
{% load i18n %} |
|||
|
|||
{% block detail_content %} |
|||
<fieldset> |
|||
<legend>Mesa Diretora da Sessão</legend> |
|||
<form method="POST"> |
|||
{% csrf_token %} |
|||
|
|||
<ul class="small-block-grid-3 medium-block-grid-3 large-block-grid-3"> |
|||
<li> |
|||
<select multiple size="5" name="composicao_mesa"> |
|||
{% for i in integrantes %} |
|||
<option value="{{i.parlamentar.id}}:{{i.cargo.id}}"> |
|||
{{i.parlamentar.nome_parlamentar}} || {{i.cargo.descricao}} |
|||
</option> |
|||
{% endfor %} |
|||
</select> |
|||
</li> |
|||
|
|||
<li> |
|||
{% if view.get_cargos_mesa %}<input type="submit" name="Incluir" Value="Incluir" />{% endif %} |
|||
<br /> |
|||
<br /> |
|||
<input type="submit" name="Excluir" Value="Excluir" /> |
|||
</li> |
|||
{% if view.get_cargos_mesa %} |
|||
<li> |
|||
<select name="parlamentar" id="parlamentar"> |
|||
{% for parlamentar in view.get_candidatos_mesa %} |
|||
<option value="{{parlamentar.id}}" name="parlamentar" id="parlamentar">{{parlamentar.nome_parlamentar}}</option> |
|||
{% endfor %} |
|||
</select> |
|||
<select name="cargo" id="cargo"> |
|||
{% for cargo in view.get_cargos_mesa %} |
|||
<option value="{{cargo.id}}" name="cargo" id="cargo">{{cargo.descricao}}</option> |
|||
{% endfor %} |
|||
</select> |
|||
</li> |
|||
{% endif %} |
|||
</ul> |
|||
</form> |
|||
</fieldset> |
|||
{% endblock detail_content %} |
Loading…
Reference in new issue