summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2018-02-24 08:53:17 -0600
committerluxagraf <sng@luxagraf.net>2018-02-24 08:53:17 -0600
commitc0227932bc6609c66a6ecc7525f1a768f3a3fdb9 (patch)
tree0063e53433efa01c6ee268336c748ba9223fa93e /config
parentefd2d2f95aa2dc83cb8a881eb9b351fe8d6f857c (diff)
fixed a bug in map data builder
Diffstat (limited to 'config')
-rw-r--r--config/base_urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/base_urls.py b/config/base_urls.py
index 1d2156d..c48d75e 100644
--- a/config/base_urls.py
+++ b/config/base_urls.py
@@ -53,6 +53,7 @@ urlpatterns = [
path(r'figments/', include('figments.urls', namespace='figments')),
path(r'resume/', include('resume.urls', namespace='resume')),
path(r'map', include('locations.urls', namespace='map')),
+ path(r'map/', include('locations.urls', namespace='map')),
path(r'', HomepageList.as_view(), name="homepage"),
path(r'comments/', include('django_comments.urls')),
path(r'<slug>', PageDetailView.as_view()),