source: firmaeventos/participantes/urls.py @ d1eba60

Last change on this file since d1eba60 was 2c1cb23, checked in by rudmanmrrod <rudman22@…>, 7 years ago

Añadida vista y ajax para verificar si el firmante es el último, agregados campos para enviar a la api de la firma

  • Property mode set to 100644
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.