aboutsummaryrefslogtreecommitdiffstats
path: root/rrs/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'rrs/urls.py')
-rw-r--r--rrs/urls.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/rrs/urls.py b/rrs/urls.py
index 4bd316ec42..9cc596da85 100644
--- a/rrs/urls.py
+++ b/rrs/urls.py
@@ -7,18 +7,18 @@ from rrs.views import RecipeListView, recipes_report, RecipeDetailView, \
urlpatterns = patterns('',
url(r'^$', FrontPageRedirect.as_view(),
name='rrs_frontpage'),
- url(r'^recipes/(?P<release_name>.*)/(?P<milestone_name>.*)/$',
+ url(r'^recipes/(?P<maintplan_name>.*)/(?P<release_name>.*)/(?P<milestone_name>.*)/$',
RecipeListView.as_view(
template_name='rrs/recipes.html'),
name='rrs_recipes'),
- url(r'^recipesreport/(?P<release_name>.*)/(?P<milestone_name>.*)/$',
+ url(r'^recipesreport/(?P<maintplan_name>.*)/(?P<release_name>.*)/(?P<milestone_name>.*)/$',
recipes_report,
name="rrs_recipesreport"),
- url(r'^recipedetail/(?P<pk>\d+)/$',
+ url(r'^recipedetail/(?P<maintplan_name>.*)/(?P<pk>\d+)/$',
RecipeDetailView.as_view(
template_name='rrs/recipedetail.html'),
name='rrs_recipedetail'),
- url(r'^maintainers/(?P<release_name>.*)/(?P<milestone_name>.*)/$',
+ url(r'^maintainers/(?P<maintplan_name>.*)/(?P<release_name>.*)/(?P<milestone_name>.*)/$',
MaintainerListView.as_view(
template_name='rrs/maintainers.html'),
name="rrs_maintainers"),