|
|
@ -12,7 +12,7 @@ from sapl.sessao.views import (AdicionarVariasMateriasExpediente, |
|
|
|
PresencaOrdemDiaView, PresencaView, |
|
|
|
ResumoOrdenacaoView, ResumoView, ResumoAtaView, RetiradaPautaCrud, SessaoCrud, |
|
|
|
TipoJustificativaCrud, TipoExpedienteCrud, TipoResultadoVotacaoCrud, |
|
|
|
TipoExpedienteCrud, TipoResultadoVotacaoCrud,TipoRetiradaPautaCrud, |
|
|
|
TipoExpedienteCrud, TipoResultadoVotacaoCrud, TipoRetiradaPautaCrud, |
|
|
|
TipoSessaoCrud, VotacaoEditView, |
|
|
|
VotacaoExpedienteEditView, |
|
|
|
VotacaoExpedienteView, VotacaoNominalEditView, |
|
|
@ -30,7 +30,7 @@ from sapl.sessao.views import (AdicionarVariasMateriasExpediente, |
|
|
|
reordernar_materias_ordem, |
|
|
|
sessao_legislativa_legislatura_ajax, |
|
|
|
VotacaoEmBlocoOrdemDia, VotacaoEmBlocoExpediente, |
|
|
|
VotacaoEmBlocoSimbolicaView,VotacaoEmBlocoNominalView) |
|
|
|
VotacaoEmBlocoSimbolicaView, VotacaoEmBlocoNominalView) |
|
|
|
|
|
|
|
from .apps import AppConfig |
|
|
|
|
|
|
@ -59,9 +59,13 @@ urlpatterns = [ |
|
|
|
name='remove_parlamentar_composicao'), |
|
|
|
|
|
|
|
url(r'^sessao/recuperar-materia/', recuperar_materia), |
|
|
|
url(r'^sessao/recuperar-numero-sessao/', recuperar_numero_sessao), |
|
|
|
url(r'^sessao/recuperar-numero-sessao/', |
|
|
|
recuperar_numero_sessao, |
|
|
|
name='recuperar_numero_sessao_view' |
|
|
|
), |
|
|
|
url(r'^sessao/sessao-legislativa-legislatura-ajax/', |
|
|
|
sessao_legislativa_legislatura_ajax), |
|
|
|
sessao_legislativa_legislatura_ajax, |
|
|
|
name='sessao_legislativa_legislatura_ajax_view'), |
|
|
|
|
|
|
|
url(r'^sessao/(?P<pk>\d+)/(?P<spk>\d+)/abrir-votacao$', |
|
|
|
abrir_votacao, |
|
|
@ -78,7 +82,7 @@ urlpatterns = [ |
|
|
|
url(r'^sistema/sessao-plenaria/tipo-expediente/', |
|
|
|
include(TipoExpedienteCrud.get_urls())), |
|
|
|
url(r'^sistema/sessao-plenaria/tipo-justificativa/', |
|
|
|
include(TipoJustificativaCrud.get_urls())), |
|
|
|
include(TipoJustificativaCrud.get_urls())), |
|
|
|
url(r'^sistema/sessao-plenaria/tipo-retirada-pauta/', |
|
|
|
include(TipoRetiradaPautaCrud.get_urls())), |
|
|
|
url(r'^sistema/bancada/', |
|
|
|