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.
31 lines
1.4 KiB
31 lines
1.4 KiB
from django.conf.urls import url
|
|
|
|
from .apps import AppConfig
|
|
from .views import (relatorio_capa_processo,
|
|
relatorio_documento_administrativo, relatorio_espelho,
|
|
relatorio_etiqueta_protocolo, relatorio_materia,
|
|
relatorio_ordem_dia, relatorio_pauta_sessao,
|
|
relatorio_protocolo, relatorio_sessao_plenaria)
|
|
|
|
app_name = AppConfig.name
|
|
|
|
urlpatterns = [
|
|
url(r'^relatorio/materia$', relatorio_materia, name='relatorio_materia'),
|
|
url(r'^relatorio/capa_processo$',
|
|
relatorio_capa_processo, name='relatorio_capa_processo'),
|
|
url(r'^relatorio/ordem_dia$', relatorio_ordem_dia,
|
|
name='relatorio_ordem_dia'),
|
|
url(r'^relatorio/relatorio_documento_administrativo$',
|
|
relatorio_documento_administrativo,
|
|
name='relatorio_documento_administrativo'),
|
|
url(r'^relatorio/espelho$', relatorio_espelho,
|
|
name='relatorio_espelho'),
|
|
url(r'^relatorio/(?P<pk>\d+)/sessao_plenaria$',
|
|
relatorio_sessao_plenaria, name='relatorio_sessao_plenaria'),
|
|
url(r'^relatorio/protocolo$',
|
|
relatorio_protocolo, name='relatorio_protocolo'),
|
|
url(r'^relatorio/(?P<nro>\d+)/(?P<ano>\d+)/etiqueta_protocolo$',
|
|
relatorio_etiqueta_protocolo, name='relatorio_etiqueta_protocolo'),
|
|
url(r'^relatorio/pauta_sessao$',
|
|
relatorio_pauta_sessao, name='relatorio_pauta_sessao'),
|
|
]
|
|
|