summaryrefslogtreecommitdiffstats
path: root/apps/patchwork/urls.py
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2008-08-23 10:29:12 +0800
committerJeremy Kerr <jk@ozlabs.org>2008-08-23 10:29:12 +0800
commit8252a61e73126c2b89c97e4195c635bc3d60a3e9 (patch)
tree572cf8f8c02d6cf6495ed336c015f41345e41c98 /apps/patchwork/urls.py
parentf1f11ba9e5511d5c0534929ed435baee994ff68b (diff)
downloadpatchwork-8252a61e73126c2b89c97e4195c635bc3d60a3e9.tar.bz2
patchwork-8252a61e73126c2b89c97e4195c635bc3d60a3e9.tar.xz
Add simple help infrastructure, with an 'about' page.
We'll need the about page for adding attribution for included components. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'apps/patchwork/urls.py')
-rw-r--r--apps/patchwork/urls.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/patchwork/urls.py b/apps/patchwork/urls.py
index f475e74..194f512 100644
--- a/apps/patchwork/urls.py
+++ b/apps/patchwork/urls.py
@@ -50,4 +50,7 @@ urlpatterns = patterns('',
# submitter autocomplete
(r'^submitter/$', 'patchwork.views.submitter_complete'),
+
+ # help!
+ (r'^help/(?P<path>.*)$', 'patchwork.views.help'),
)