mirror of https://github.com/interlegis/sapl.git
Browse Source
* Adicona link para tipo documento administrativo e status tramitacao administrativo * Muda campos apresentados na listagem da tramitacao * Cria tipo de instituição * Fix qa * Ordena listagem pela sigla * Adiciona indicador na listagempull/480/head
Eduardo Edson Batista Cordeiro Alves
9 years ago
committed by
Edward
8 changed files with 81 additions and 10 deletions
@ -0,0 +1,16 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.9.5 on 2016-05-19 14:18 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('parlamentares', '0019_auto_20160518_1204'), |
||||
|
('parlamentares', '0020_auto_20160518_1201'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
] |
@ -0,0 +1,26 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.9.5 on 2016-05-17 18:07 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('protocoloadm', '0011_auto_20160318_1504'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.CreateModel( |
||||
|
name='TipoInstituicao', |
||||
|
fields=[ |
||||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
||||
|
('descricao', models.CharField(max_length=50, verbose_name='Descrição')), |
||||
|
], |
||||
|
options={ |
||||
|
'verbose_name': 'Tipo de Instituição', |
||||
|
'verbose_name_plural': 'Tipos de Instituições', |
||||
|
}, |
||||
|
), |
||||
|
] |
Loading…
Reference in new issue