|
|
@ -3,7 +3,7 @@ from django.conf.urls import url |
|
|
from .apps import AppConfig |
|
|
from .apps import AppConfig |
|
|
from .views import (cronometro_painel, get_dados_painel, painel_mensagem_view, |
|
|
from .views import (cronometro_painel, get_dados_painel, painel_mensagem_view, |
|
|
painel_parlamentar_view, painel_view, painel_votacao_view, |
|
|
painel_parlamentar_view, painel_view, painel_votacao_view, |
|
|
switch_painel, votante_view) |
|
|
switch_painel, verifica_painel, votante_view) |
|
|
|
|
|
|
|
|
app_name = AppConfig.name |
|
|
app_name = AppConfig.name |
|
|
|
|
|
|
|
|
@ -17,6 +17,8 @@ urlpatterns = [ |
|
|
url(r'^painel/switch-painel$', switch_painel, |
|
|
url(r'^painel/switch-painel$', switch_painel, |
|
|
name="switch_painel"), |
|
|
name="switch_painel"), |
|
|
url(r'^painel/votacao$', painel_votacao_view, name='painel_votacao'), |
|
|
url(r'^painel/votacao$', painel_votacao_view, name='painel_votacao'), |
|
|
|
|
|
url(r'^painel/verifica-painel$', verifica_painel, |
|
|
|
|
|
name="verifica_painel"), |
|
|
url(r'^painel/cronometro$', cronometro_painel, name='cronometro_painel'), |
|
|
url(r'^painel/cronometro$', cronometro_painel, name='cronometro_painel'), |
|
|
# url(r'^painel/cronometro$', include(CronometroPainelCrud.get_urls())), |
|
|
# url(r'^painel/cronometro$', include(CronometroPainelCrud.get_urls())), |
|
|
|
|
|
|
|
|
|