mirror of https://github.com/interlegis/sapl.git
Browse Source
* Add campo Esfera Federação na Confiração da Aplicação e trazer esfera ja selecionada ao add norma juridica * ao adcionar norma juridica o campo complementar autocompletado como Não * fix migrations * Delete 0021_appconfig_esfera_federacao.py * Update 0022_auto_20180828_1439.py * update * Delete 0021_auto_20180828_1439.py * Create 0021_appconfig_esfera_federacao.pypull/2183/head
Talitha Pumar
6 years ago
committed by
Edward
5 changed files with 48 additions and 2 deletions
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.13 on 2018-08-28 18:16 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('base', '0020_auto_20180821_1421'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='appconfig', |
|||
name='esfera_federacao', |
|||
field=models.CharField(blank=True, choices=[('M', 'Municipal'), ('E', 'Estadual'), ('F', 'Federal')], default='', max_length=1, verbose_name='Esfera Federação'), |
|||
), |
|||
] |
Loading…
Reference in new issue