mirror of https://github.com/interlegis/sapl.git
Browse Source
* Adiciona opcao de exibir nome da Casa legislativa no painel * Fix Layouts.yaml de painelconfigpull/2882/head
Cesar Augusto de Carvalho
6 years ago
committed by
Edward
6 changed files with 34 additions and 3 deletions
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.11.20 on 2019-06-26 14:49 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('painel', '0007_painelconfig_tempo_disparo_termino'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='painelconfig', |
|||
name='exibir_nome_casa', |
|||
field=models.BooleanField(choices=[(True, 'Sim'), (False, 'Não')], default=True, verbose_name='Exibir nome da Casa Legislativa no painel?'), |
|||
), |
|||
] |
Loading…
Reference in new issue