diff options
Diffstat (limited to 'examples/hello/urls.py')
| -rw-r--r-- | examples/hello/urls.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/hello/urls.py b/examples/hello/urls.py new file mode 100644 index 0000000000..e57c2b8e8c --- /dev/null +++ b/examples/hello/urls.py @@ -0,0 +1,10 @@ +from django.conf.urls.defaults import * + +urlpatterns = patterns('examples.hello.views', + (r'^html/$', 'hello_html'), + (r'^text/$', 'hello_text'), + (r'^write/$', 'hello_write'), + (r'^metadata/$', 'metadata'), + (r'^getdata/$', 'get_data'), + (r'^postdata/$', 'post_data'), +) |
