2017-02-18 01:10:30 +01:00
|
|
|
from django.conf.urls import url
|
2017-02-18 16:58:40 +01:00
|
|
|
from event.views import Example, ExampleForm
|
2017-02-18 01:10:30 +01:00
|
|
|
|
|
|
|
app_name = 'event'
|
|
|
|
urlpatterns = [
|
2017-02-18 16:58:40 +01:00
|
|
|
url(r'^$', Example.as_view(), name='index'),
|
|
|
|
url(r'^form/$', ExampleForm.as_view(), name='index.form'),
|
2017-02-18 01:10:30 +01:00
|
|
|
]
|