mirror of https://github.com/interlegis/sapl.git
Edward
9 years ago
10 changed files with 72 additions and 155 deletions
@ -0,0 +1,19 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9 on 2016-04-29 16:49 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('materia', '0029_auto_20160428_1020'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterModelOptions( |
|||
name='numeracao', |
|||
options={'ordering': ('materia', 'tipo_materia', 'numero_materia', 'ano_materia', 'data_materia'), 'verbose_name': 'Numeração', 'verbose_name_plural': 'Numerações'}, |
|||
), |
|||
] |
@ -1,35 +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>Numeração</legend> |
|||
<table class="table table-striped table-bordered"> |
|||
<thead class="thead-default"> |
|||
<tr> |
|||
<th>Tipo Matéria</th> |
|||
<th>Descrição</th> |
|||
<th>Número</th> |
|||
<th>Ano</th> |
|||
<th>Data</th> |
|||
</tr> |
|||
</thead> |
|||
{% for n in numeracao %} |
|||
<tr> |
|||
<td><a href="{% url 'materia:numeracao_edit' object.id n.id %}">{{n.tipo_materia.sigla}}</a></td> |
|||
<td>{{n.tipo_materia.descricao}}</td> |
|||
<td>{{n.numero_materia}}</td> |
|||
<td>{{n.ano_materia}}</td> |
|||
<td>{{n.data_materia|date:'d/m/Y'}}</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