mirror of https://github.com/interlegis/sapl.git
Browse Source
Adiciona parâmetro em Sistema > Configurações da Aplicação para escolher entre nome político (parlamentar) e nome civil na assinatura digital de Matérias Legislativas. Inclui atalho no menu /sistema/.pull/3858/head
6 changed files with 46 additions and 1 deletions
@ -0,0 +1,21 @@ |
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('base', '0061_documenttemplate'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='appconfig', |
|||
name='assinatura_nome', |
|||
field=models.CharField( |
|||
choices=[('P', 'Nome Político (Parlamentar)'), ('C', 'Nome Civil (Real)')], |
|||
default='P', |
|||
max_length=1, |
|||
verbose_name='Nome utilizado na assinatura digital', |
|||
), |
|||
), |
|||
] |
|||
Loading…
Reference in new issue