diff options
Diffstat (limited to 'chimere/urls.py')
-rw-r--r-- | chimere/urls.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/chimere/urls.py b/chimere/urls.py index eb49102..70a9844 100644 --- a/chimere/urls.py +++ b/chimere/urls.py @@ -154,6 +154,10 @@ urlpatterns += patterns( 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"), ) + +if settings.PROJECT_APP != "chimere_example_project": + urlpatterns += patterns( + # At the end, because it catches large + url(r'^(?P<area_name>[a-zA-Z0-9_-]+)?', 'index', name="index"), + ) |