source: firmaeventos/eventos/urls.py @ 66158c7

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

Agregado paginador y listado de eventos

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