Skip to content

Commit

Permalink
Redefining some urls when using worldmap contrib application
Browse files Browse the repository at this point in the history
  • Loading branch information
capooti committed Jan 31, 2018
1 parent f161964 commit 55a29e1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions geonode/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,13 @@
url(r'^help/$', TemplateView.as_view(template_name='help.html'), name='help'),
url(r'^developer/$', TemplateView.as_view(template_name='developer.html'), name='developer'),
url(r'^about/$', TemplateView.as_view(template_name='about.html'), name='about'),
)

# WorldMap
if settings.USE_WORLDMAP:
urlpatterns += [url(r'', include('geonode.contrib.worldmap.wm_extra.urls', namespace='worldmap'))]

urlpatterns += patterns('',
# Layer views
(r'^layers/', include('geonode.layers.urls')),

Expand Down

0 comments on commit 55a29e1

Please sign in to comment.