mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.4 KiB
32 lines
1.4 KiB
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from comissoes.models import Comissao
|
|
from sapl.crud import build_crud
|
|
|
|
|
|
comissao_crud = build_crud(Comissao,
|
|
|
|
[_('Dados Básicos'),
|
|
[('nome', 9), ('sigla', 3)],
|
|
[('tipo', 3),
|
|
('data_criacao', 3),
|
|
('unidade_deliberativa', 3),
|
|
('data_extincao', 3)]],
|
|
|
|
[_('Dados Complementares'),
|
|
[('local_reuniao', 4),
|
|
('agenda_reuniao', 4),
|
|
('telefone_reuniao', 4)],
|
|
[('endereco_secretaria', 4),
|
|
('telefone_secretaria', 4),
|
|
('fax_secretaria', 4)],
|
|
[('secretario', 4), ('email', 8)],
|
|
[('finalidade', 12)]],
|
|
|
|
[_('Temporária'),
|
|
[('apelido_temp', 8),
|
|
('data_instalacao_temp', 4)],
|
|
[('data_final_prevista_temp', 4),
|
|
('data_prorrogada_temp', 4),
|
|
('data_fim_comissao', 4)]],
|
|
)
|
|
|