summaryrefslogtreecommitdiff
path: root/pgcommitfest/urls.py
diff options
context:
space:
mode:
authorJelte Fennema-Nio2024-06-22 11:17:23 +0000
committerMagnus Hagander2024-08-02 11:33:31 +0000
commit429ea84fe875505fa840eda246a83960f76dda28 (patch)
treeb9310507c25986eb777934c112289a82f20c366e /pgcommitfest/urls.py
parent485caaf65a10da53ce2c186c487150d2865de147 (diff)
Add /current link that links to either /inprogress or /open
Diffstat (limited to 'pgcommitfest/urls.py')
-rw-r--r--pgcommitfest/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pgcommitfest/urls.py b/pgcommitfest/urls.py
index 9e4d6f8..4f6e9d2 100644
--- a/pgcommitfest/urls.py
+++ b/pgcommitfest/urls.py
@@ -17,7 +17,7 @@ urlpatterns = [
re_path(r'^$', views.home),
re_path(r'^activity(?P<rss>\.rss)?/', views.activity),
re_path(r'^(\d+)/$', views.commitfest),
- re_path(r'^(open|inprogress)/(.*)$', views.redir),
+ re_path(r'^(open|inprogress|current)/(.*)$', views.redir),
re_path(r'^(?P<cfid>\d+)/activity(?P<rss>\.rss)?/$', views.activity),
re_path(r'^(\d+)/(\d+)/$', views.patch),
re_path(r'^(\d+)/(\d+)/edit/$', views.patchform),