|
@ -9,7 +9,7 @@ from sessao.views import (EditExpedienteOrdemDiaView, EditMateriaOrdemDiaView, |
|
|
OradorExpedienteView, PainelView, |
|
|
OradorExpedienteView, PainelView, |
|
|
PautaSessaoDetailView, PautaSessaoListView, |
|
|
PautaSessaoDetailView, PautaSessaoListView, |
|
|
PresencaOrdemDiaView, PresencaView, ResumoView, |
|
|
PresencaOrdemDiaView, PresencaView, ResumoView, |
|
|
SessaoListView, VotacaoEditView, |
|
|
SessaoListView, SessaoPlenariaView, VotacaoEditView, |
|
|
VotacaoExpedienteEditView, VotacaoExpedienteView, |
|
|
VotacaoExpedienteEditView, VotacaoExpedienteView, |
|
|
VotacaoNominalEditView, |
|
|
VotacaoNominalEditView, |
|
|
VotacaoNominalExpedienteEditView, |
|
|
VotacaoNominalExpedienteEditView, |
|
@ -88,13 +88,17 @@ urlpatterns_sessao = sessao_crud.urlpatterns + [ |
|
|
PautaSessaoListView.as_view(), name='list_pauta_sessao'), |
|
|
PautaSessaoListView.as_view(), name='list_pauta_sessao'), |
|
|
url(r'^(?P<pk>\d+)/pauta-sessao-detail$', |
|
|
url(r'^(?P<pk>\d+)/pauta-sessao-detail$', |
|
|
PautaSessaoDetailView.as_view(), name='pauta_sessao_detail'), |
|
|
PautaSessaoDetailView.as_view(), name='pauta_sessao_detail'), |
|
|
url(r'^cadastro$', SessaoCadastroView.as_view(), name='sessao_cadastro') |
|
|
url(r'^cadastro$', SessaoCadastroView.as_view(), name='sessao_cadastro'), |
|
|
] |
|
|
] |
|
|
|
|
|
|
|
|
sessao_urls = urlpatterns_sessao, sessao_crud.namespace, sessao_crud.namespace |
|
|
sessao_urls = urlpatterns_sessao, sessao_crud.namespace, sessao_crud.namespace |
|
|
|
|
|
|
|
|
|
|
|
sessao_rest = [url(r'^sessao$', SessaoPlenariaView.as_view(), name='sessao_rest'),] |
|
|
|
|
|
|
|
|
urlpatterns = [ |
|
|
urlpatterns = [ |
|
|
url(r'^sessao/', include(urlpatterns_sessao, |
|
|
url(r'^sessao/', include(urlpatterns_sessao, |
|
|
sessao_crud.namespace, sessao_crud.namespace)), |
|
|
sessao_crud.namespace, sessao_crud.namespace)), |
|
|
|
|
|
url(r'^rest/', include(sessao_rest)), |
|
|
url(r'^sistema/sessao-plenaria/tipo/', include(tipo_sessao_crud.urls)), |
|
|
url(r'^sistema/sessao-plenaria/tipo/', include(tipo_sessao_crud.urls)), |
|
|
url(r'^sistema/sessao-plenaria/tipo-resultado-votacao/', |
|
|
url(r'^sistema/sessao-plenaria/tipo-resultado-votacao/', |
|
|
include(tipo_resultado_votacao_crud.urls)), |
|
|
include(tipo_resultado_votacao_crud.urls)), |
|
|