|
|
@ -43,7 +43,9 @@ ORDENACAO_RESUMO = [('cont_mult', 'Conteúdo Multimídia'), |
|
|
|
('mesa_d', 'Mesa Diretora'), |
|
|
|
('oradores_exped', 'Oradores do Expediente'), |
|
|
|
('oradores_expli', 'Oradores das Explicações Pessoais'), |
|
|
|
('ocorr_sessao', 'Ocorrências da Sessão')] |
|
|
|
('ocorr_sessao', 'Ocorrências da Sessão'), |
|
|
|
('v_n_mat_exp', 'Votações Nominais - Matérias do Expediente'), |
|
|
|
('v_n_mat_o_d', 'Votações Nominais - Matérias da Ordem do Dia')] |
|
|
|
|
|
|
|
|
|
|
|
class SessaoPlenariaForm(FileFieldCheckMixin, ModelForm): |
|
|
@ -761,6 +763,10 @@ class ResumoOrdenacaoForm(forms.Form): |
|
|
|
choices=ORDENACAO_RESUMO) |
|
|
|
decimo_primeiro = forms.ChoiceField(label='11°', |
|
|
|
choices=ORDENACAO_RESUMO) |
|
|
|
decimo_segundo = forms.ChoiceField(label='12°', |
|
|
|
choices=ORDENACAO_RESUMO) |
|
|
|
decimo_terceiro = forms.ChoiceField(label='13°', |
|
|
|
choices=ORDENACAO_RESUMO) |
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs): |
|
|
|
super(ResumoOrdenacaoForm, self).__init__(*args, **kwargs) |
|
|
@ -787,12 +793,17 @@ class ResumoOrdenacaoForm(forms.Form): |
|
|
|
[('decimo', 12)]) |
|
|
|
row11 = to_row( |
|
|
|
[('decimo_primeiro', 12)]) |
|
|
|
row12 = to_row( |
|
|
|
[('decimo_segundo', 12)]) |
|
|
|
row13 = to_row( |
|
|
|
[('decimo_terceiro', 12)]) |
|
|
|
|
|
|
|
self.helper = SaplFormHelper() |
|
|
|
self.helper.layout = Layout( |
|
|
|
Fieldset(_(''), |
|
|
|
row1, row2, row3, row4, row5, |
|
|
|
row6, row7, row8, row9, row10, row11, |
|
|
|
row6, row7, row8, row9, row10, |
|
|
|
row11, row12, row13, |
|
|
|
form_actions(label='Atualizar')) |
|
|
|
) |
|
|
|
|
|
|
|