App Engine Python SDK version 1.7.4 (2)
[gae.git] / python / lib / django_1_4 / tests / regressiontests / templates / alternate_urls.py
blobfa4985a9dc2d7843c40c6e4541555cf2732f5c3e
1 # coding: utf-8
3 from __future__ import absolute_import
5 from django.conf.urls import patterns, url
7 from . import views
10 urlpatterns = patterns('',
11 # View returning a template response
12 (r'^template_response_view/$', views.template_response_view),
14 # A view that can be hard to find...
15 url(r'^snark/', views.snark, name='snark'),