diff options
author | Magnus Hagander | 2015-01-19 21:11:31 +0000 |
---|---|---|
committer | Magnus Hagander | 2015-01-19 21:11:31 +0000 |
commit | 9b32be184483a7b29256ddb06e03679362c5e557 (patch) | |
tree | f07e941d0fb2d91fa86dadc2710f0d9f03bc378a /pgcommitfest/urls.py | |
parent | 9c10bad85bf90e76d6da0bf4703a73b03fe3b8b6 (diff) |
Add commitfest redirects for /open and /inprogress
Requested by Robert Haas
Diffstat (limited to 'pgcommitfest/urls.py')
-rw-r--r-- | pgcommitfest/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pgcommitfest/urls.py b/pgcommitfest/urls.py index fb32e67..ef1d38c 100644 --- a/pgcommitfest/urls.py +++ b/pgcommitfest/urls.py @@ -8,6 +8,7 @@ admin.autodiscover() urlpatterns = patterns('', url(r'^$', 'commitfest.views.home'), url(r'^(\d+)/$', 'commitfest.views.commitfest'), + url(r'^(open|inprogress)/$', 'commitfest.views.redir'), url(r'^(\d+)/(\d+)/$', 'commitfest.views.patch'), url(r'^(\d+)/(\d+)/edit/$', 'commitfest.views.patchform'), url(r'^(\d+)/new/$', 'commitfest.views.newpatch'), |