From a154ccdf9bb0d6ba06b4038789437bd98d656282 Mon Sep 17 00:00:00 2001 From: Daniele Procida Date: Wed, 1 May 2013 14:40:04 +0100 Subject: [PATCH] fix incorrect url pattern for archived studentships --- vacancies_and_studentships/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vacancies_and_studentships/urls.py b/vacancies_and_studentships/urls.py index 346214fd..d17a0c3f 100644 --- a/vacancies_and_studentships/urls.py +++ b/vacancies_and_studentships/urls.py @@ -10,7 +10,7 @@ # entities' vacancies and studentships url(r'^archived-vacancies/(?:(?P[-\w]+)/)?$', views.archived_vacancies, name="archived_vacancies"), url(r'^all-open-vacancies/(?:(?P[-\w]+)/)?$', views.all_current_vacancies, name="all_current_vacancies"), - url(r'^archived-studentships/(?:(?P[-\w]+)/)?$', views.vacancies_and_studentships, name="vacancies_and_studentships"), + url(r'^archived-studentships/(?:(?P[-\w]+)/)?$', views.archived_studentships, name="archived_studentships"), url(r"^all-open-studentships/(?:(?P[-\w]+)/)?$", views.all_current_studentships, name="all_current_studentships"), url(r"^vacancies-and-studentships/(?:(?P[-\w]+)/)?$", views.vacancies_and_studentships, name="vacancies_and_studentships"), )