summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2017-05-01 16:51:33 -0500
committerluxagraf <sng@luxagraf.net>2017-05-01 16:51:33 -0500
commit94844eacde23b1a3fb21084ce5f2b320fb7617b2 (patch)
treed12e220e4390fb3be5e01acffda93c93bf629458
parentc53aeceae4a9867f5f13ee99434138b5b8543a8c (diff)
fixed a bug in the build process for maps
-rw-r--r--app/jrnl/build.py2
-rw-r--r--config/base_urls.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/jrnl/build.py b/app/jrnl/build.py
index 0354470..918326a 100644
--- a/app/jrnl/build.py
+++ b/app/jrnl/build.py
@@ -59,7 +59,7 @@ class BuildJrnl(BuildNew):
def build_map(self):
self.build_list_view(
- base_path=reverse("locations:maplist"),
+ base_path=reverse("map:maplist"),
paginate_by=1000000
)
url = "/media/js/mainmap.js"
diff --git a/config/base_urls.py b/config/base_urls.py
index aa97cbd..693ec26 100644
--- a/config/base_urls.py
+++ b/config/base_urls.py
@@ -67,7 +67,7 @@ urlpatterns += [
url(r'^src/', include('src.urls', namespace='src')),
url(r'^figments/', include('figments.urls', namespace='figments')),
url(r'^resume/', include('resume.urls', namespace='resume')),
- url(r'^map', include('locations.urls')),
+ url(r'^map/', include('locations.urls', namespace='map')),
url(
r'^$',
HomepageList.as_view(),