source: firmaeventos/eventos/urls.py @ 452668a

Last change on this file since 452668a was 452668a, checked in by rudmanmrrod <rudman22@…>, 6 years ago

Ajustada validación para un firmante a la vez por documento

  • Property mode set to 100755
File size: 713 bytes
Line 
1# -*- coding: utf-8 -*-
2from django.conf.urls import url
3
4from .views import *
5
6urlpatterns = [
7    # Urls Access Super Admin
8    # Crear y asignar participantes a eventos
9    url(r'^crear-eventos/$', RegisterEvent.as_view(), name='create_events'),
10    url(r'^lista-eventos/$', ListEvent.as_view(), name='list_events'),
11    url(r'^firmar-evento/(?P<pk>\d+)$', SignEvent.as_view(),
12        name='firma_events'),
13    url(r'^detail-evento/(?P<pk>\d+)$', DetailEvent.as_view(),
14        name='detail_event'),
15    url(r'^comprobar-evento/(?P<event_id>\d+)$', EventoProcesado.as_view(),
16        name='comprobar_evento'),
17    url(r'^comprobar-evento/$', EventoProcesado.as_view(),
18        name='comprobar_evento_nid'),
19]
Note: See TracBrowser for help on using the repository browser.