mirror of https://github.com/interlegis/sapl.git
Edward
9 years ago
15 changed files with 166 additions and 495 deletions
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.5 on 2016-05-02 14:31 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('materia', '0030_auto_20160429_1349'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='tramitacao', |
|||
name='urgente', |
|||
field=models.BooleanField(choices=[(True, 'Sim'), (False, 'Não')], verbose_name='Urgente ?'), |
|||
), |
|||
] |
@ -1,33 +0,0 @@ |
|||
{% extends "crud/detail.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags %} |
|||
{% block actions %} {% endblock %} |
|||
{% block detail_content %} |
|||
<fieldset> |
|||
<legend>Matéria Legislativa</legend> |
|||
{% include "materia/resumo_detail_materia.html" %} |
|||
|
|||
<fieldset> |
|||
<legend>Legislação Citada</legend> |
|||
<table class="table table-striped table-bordered"> |
|||
<thead class="thead-default"> |
|||
<tr> |
|||
<th>Tipo Norma</th> |
|||
<th>Número</th> |
|||
<th>Ano</th> |
|||
<th>Disposição</th> |
|||
</tr> |
|||
</thead> |
|||
{% for l in legislacao %} |
|||
<tr> |
|||
<td><a href="{% url 'materia:legislacao_citada_edit' object.id l.id %}">{{l.norma.tipo.descricao}}</a></td> |
|||
<td>{{l.norma.numero}}</td> |
|||
<td>{{l.norma.ano}}</td> |
|||
<td>{{l.disposicoes}}</td> |
|||
</tr> |
|||
{% endfor %} |
|||
</table> |
|||
</fieldset> |
|||
{% crispy form %} |
|||
</fieldset> |
|||
{% endblock %} |
@ -1,94 +0,0 @@ |
|||
{% extends "crud/detail.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags %} |
|||
{% block actions %} {% endblock %} |
|||
{% block detail_content %} |
|||
<fieldset> |
|||
<legend>Matéria Legislativa</legend> |
|||
{% include "materia/resumo_detail_materia.html" %} |
|||
|
|||
<fieldset class="form-group"> |
|||
<legend>Editar Legislação Citada</legend> |
|||
<form method="POST"> |
|||
{% csrf_token %} |
|||
|
|||
<div class="row"> |
|||
<div class="col-md-4"> |
|||
<label>Tipo Norma*</label> |
|||
<select name="tipo" class="form-control"> |
|||
{% for tipo in tipos_norma %} |
|||
<option value="{{tipo.id}}" {% if tipo == legislacao.norma.tipo %} selected {% endif %}> |
|||
{{tipo.sigla}} - {{tipo.descricao}} |
|||
</option> |
|||
{% endfor %} |
|||
</select> |
|||
</div> |
|||
<div class="col-md-4"> |
|||
<label>Número*</label> |
|||
<input type="text" name="numero" value="{{legislacao.norma.numero}}" class="form-control"/> |
|||
</div> |
|||
<div class="col-md-4"> |
|||
<label>Ano*</label> |
|||
<input type="text" name="ano" value="{{legislacao.norma.ano}}" class="form-control"/> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="row"> |
|||
<div class="col-md-3"> |
|||
<label>Disposição</label> |
|||
<input type="text" name="disposicao" value="{{legislacao.disposicoes}}" class="form-control"/> |
|||
</div> |
|||
<div class="col-md-3"> |
|||
<label>Parte</label> |
|||
<input type="text" name="parte" value="{{legislacao.parte}}" class="form-control"/> |
|||
</div> |
|||
<div class="col-md-3"> |
|||
<label>Livro</label> |
|||
<input type="text" name="livro" value="{{legislacao.livro}}" class="form-control"/> |
|||
</div> |
|||
<div class="col-md-3"> |
|||
<label>Título</label> |
|||
<input type="text" name="titulo" value="{{legislacao.titulo}}" class="form-control"/> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="row"> |
|||
<div class="col-md-3"> |
|||
<label>Capítulo</label> |
|||
<input type="text" name="capitulo" value="{{legislacao.capitulo}}" class="form-control"/> |
|||
</div> |
|||
<div class="col-md-3"> |
|||
<label>Seção</label> |
|||
<input type="text" name="secao" value="{{legislacao.secao}}" class="form-control"/> |
|||
</div> |
|||
<div class="col-md-3"> |
|||
<label>Subseção</label> |
|||
<input type="text" name="subsecao" value="{{legislacao.subsecao}}" class="form-control"/> |
|||
</div> |
|||
<div class="col-md-3"> |
|||
<label>Artigo</label> |
|||
<input type="text" name="artigo" value="{{legislacao.artigo}}" class="form-control"/> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="row"> |
|||
<div class="col-md-3"> |
|||
<label>Inciso</label> |
|||
<input type="text" name="inciso" value="{{legislacao.inciso}}" class="form-control" /> |
|||
</div> |
|||
<div class="col-md-3"> |
|||
<label>Alínea</label> |
|||
<input type="text" name="alinea" value="{{legislacao.alinea}}" class="form-control"/> |
|||
</div> |
|||
<div class="col-md-3"> |
|||
<label>Item</label> |
|||
<input type="text" name="item" value="{{legislacao.item}}" class="form-control"/> |
|||
</div> |
|||
</div> |
|||
<br /> |
|||
<input type="submit" value="Salvar" id="salvar" name="salvar" class="btn btn-primary" /> |
|||
<input type="submit" value="Excluir" id="excluir" name="excluir" class="btn btn-danger" /> |
|||
</form> |
|||
</fieldset> |
|||
</fieldset> |
|||
{% endblock %} |
@ -1,33 +0,0 @@ |
|||
{% extends "crud/detail.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags %} |
|||
{% block actions %} {% endblock %} |
|||
{% block detail_content %} |
|||
<fieldset> |
|||
<legend>Matéria Legislativa</legend> |
|||
{% include "materia/resumo_detail_materia.html" %} |
|||
|
|||
<fieldset> |
|||
<legend>Tramitações</legend> |
|||
<table class="table table-striped table-bordered"> |
|||
<thead class="thead-default"> |
|||
<tr> |
|||
<th>Data Ação</th> |
|||
<th>Origem</th> |
|||
<th>Destino</th> |
|||
<th>Status</th> |
|||
</tr> |
|||
</thead> |
|||
{% for t in tramitacoes %} |
|||
<tr> |
|||
<td><a href="{% url 'materia:tramitacao_edit' object.id t.id %}">{{t.data_tramitacao|date:'d/m/Y'}}</a></td> |
|||
<td>{{t.unidade_tramitacao_local}}</td> |
|||
<td>{{t.unidade_tramitacao_destino}}</td> |
|||
<td>{{t.status.descricao}}</td> |
|||
</tr> |
|||
{% endfor %} |
|||
</table> |
|||
</fieldset> |
|||
{% crispy form %} |
|||
</fieldset> |
|||
{% endblock %} |
@ -1,7 +0,0 @@ |
|||
{% extends "crud/detail.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags %} |
|||
{% block actions %} {% endblock %} |
|||
{% block detail_content %} |
|||
{% crispy form %} |
|||
{% endblock %} |
Loading…
Reference in new issue