mirror of https://github.com/interlegis/sigi.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.
9 lines
294 B
9 lines
294 B
# coding: utf-8
|
|
from django.conf.urls import patterns, url
|
|
|
|
urlpatterns = patterns(
|
|
'sigi.apps.eventos.views',
|
|
# Painel de ocorrencias
|
|
url(r'^calendario/$', 'calendario', name='eventos-calendario'),
|
|
url(r'^alocacaoequipe/$', 'alocacao_equipe', name='eventos-alocacaoequipe'),
|
|
)
|
|
|