source: firmaeventos/participantes/urls.py @ ae65f8e

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

Agregadas funciones para consultar participante por ajax, agregadas vars de javascript para usar en ajax, agregada vista ajax para consultar un participante en un evento

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