summaryrefslogtreecommitdiff
path: root/ishtar/urls.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2010-12-02 17:41:31 +0100
committerÉtienne Loks <etienne.loks@peacefrogs.net>2010-12-24 17:38:01 +0100
commit6710679433a803ff4b157efe7ef37539fae72a79 (patch)
tree285bb00f6a5f325bb8c7ed1baadd287e04ab2d3c /ishtar/urls.py
downloadIshtar-6710679433a803ff4b157efe7ef37539fae72a79.tar.bz2
Ishtar-6710679433a803ff4b157efe7ef37539fae72a79.zip
Initial commit
Diffstat (limited to 'ishtar/urls.py')
-rw-r--r--ishtar/urls.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/ishtar/urls.py b/ishtar/urls.py
new file mode 100644
index 000000000..fc201b063
--- /dev/null
+++ b/ishtar/urls.py
@@ -0,0 +1,16 @@
+from django.conf.urls.defaults import *
+
+# Uncomment the next two lines to enable the admin:
+# from django.contrib import admin
+# admin.autodiscover()
+
+urlpatterns = patterns('',
+ # Example:
+ # (r'^ishtar/', include('ishtar.foo.urls')),
+
+ # Uncomment the admin/doc line below to enable admin documentation:
+ # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
+
+ # Uncomment the next line to enable the admin:
+ # (r'^admin/', include(admin.site.urls)),
+)