source: firmaeventos/participantes/urls.py @ 27c0bd4

Last change on this file since 27c0bd4 was e91566e, checked in by Leonel Hernandez <leonelphm@…>, 7 years ago

Agregada url en app participantes

  • Property mode set to 100644
File size: 448 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]
Note: See TracBrowser for help on using the repository browser.