2014-04-02 00:46:34 +00:00
|
|
|
from django.conf.urls import url
|
2011-01-24 14:24:35 +00:00
|
|
|
|
2011-10-13 21:34:56 +00:00
|
|
|
from . import views
|
2011-01-16 15:38:03 +00:00
|
|
|
|
2011-01-24 14:24:35 +00:00
|
|
|
|
2014-04-02 00:46:34 +00:00
|
|
|
urlpatterns = [
|
2011-01-16 15:38:03 +00:00
|
|
|
# View returning a template response
|
2014-04-02 00:46:34 +00:00
|
|
|
url(r'^template_response_view/$', views.template_response_view),
|
2011-01-16 15:38:03 +00:00
|
|
|
|
|
|
|
# A view that can be hard to find...
|
|
|
|
url(r'^snark/', views.snark, name='snark'),
|
2014-04-02 00:46:34 +00:00
|
|
|
]
|