Skip to content

Commit 287bb9c

Browse files
author
Shashank Kumar
authored
Fixes 404 Error on conference index url (#563)
1 parent e9b198e commit 287bb9c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

junction/urls.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
url(r'^tickets/', include('junction.tickets.urls')),
5555

5656
# Proposals related
57+
url(r'^(?P<conference_slug>[\w-]+)/$',
58+
RedirectView.as_view(pattern_name="proposals-list"),
59+
name='conference-index'),
5760
url(r'^(?P<conference_slug>[\w-]+)/proposals/', include('junction.proposals.urls')),
5861
url(r'^(?P<conference_slug>[\w-]+)/dashboard/reviewers/',
5962
junction.proposals.dashboard.reviewer_comments_dashboard,

0 commit comments

Comments
 (0)