source: firmaeventos/participantes/urls.py @ 5d88f36

Last change on this file since 5d88f36 was 5d88f36, checked in by lhernandez <lhernandez@…>, 7 years ago

Agregada class para comporbar el proceso del evento

  • Property mode set to 100755
File size: 686 bytes
Line 
1# -*- coding: utf-8 -*-
2from django.conf.urls import url
3
4from .views import *
5
6urlpatterns = [
7    url(r'^search-participante/(?P<pk>\d+)/(?P<pasaporte>.+)$', ParticipanteEventoSearch.as_view(), name='search_participante'),
8    url(r'^search-participante/$', ParticipanteEventoSearch.as_view(), name='search_participante_nid'),
9    url(r'^update-participante-evento/$', AjaxParticipanteFirmaEvento.as_view(), name='update_participante_evento'),
10    url(r'^participante-restante/(?P<evento>\d+)/$', ParticipantesRestantes.as_view(), name='participante_restante_evento'),
11    url(r'^participante-restante/$', ParticipantesRestantes.as_view(), name='participante_restante_evento_nid'),
12]
Note: See TracBrowser for help on using the repository browser.