summaryrefslogtreecommitdiff
path: root/chimere/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'chimere/urls.py')
-rw-r--r--chimere/urls.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/chimere/urls.py b/chimere/urls.py
index de7f3f5..966ef4f 100644
--- a/chimere/urls.py
+++ b/chimere/urls.py
@@ -147,6 +147,9 @@ urlpatterns += patterns(
url(r'^(?:(?P<area_name>[a-zA-Z0-9_-]*)/)?categories/'
r'(?P<category_slug>[a-zA-Z0-9_-]+)$',
CategoryView.as_view(), name='category-directory-detail'),
+ url(r'^(?:(?P<area_name>[a-zA-Z0-9_-]*)/)?property-choices/'
+ r'(?P<property_slug>[a-zA-Z0-9_-]+)/$',
+ 'property_choice_list', name='property-choices'),
# At the end, because it catches large
url(r'^(?P<area_name>[a-zA-Z0-9_-]+)?', 'index', name="index"),
)