summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorChris Alfonso <calfonso@redhat.com>2008-07-11 10:31:36 -0400
committerChris Alfonso <calfonso@redhat.com>2008-07-11 10:31:36 -0400
commit361391dfa7b6cc8609494767eaaa97ffc036e648 (patch)
tree0711266f0a016d2ceddc9dfd4ef31ed9766b5152 /urls.py
downloadcode-genome-django-361391dfa7b6cc8609494767eaaa97ffc036e648.tar.gz
code-genome-django-361391dfa7b6cc8609494767eaaa97ffc036e648.tar.xz
code-genome-django-361391dfa7b6cc8609494767eaaa97ffc036e648.zip
Adding simple django example
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/urls.py b/urls.py
new file mode 100644
index 0000000..c51b8cf
--- /dev/null
+++ b/urls.py
@@ -0,0 +1,9 @@
+from django.conf.urls.defaults import *
+
+urlpatterns = patterns('',
+ # Example:
+ # (r'^genome_django/', include('genome_django.foo.urls')),
+
+ # Uncomment this for admin:
+# (r'^admin/', include('django.contrib.admin.urls')),
+)