13 lines
317 B
Python
13 lines
317 B
Python
from django.conf.urls import url
|
|
from djgeojson.views import GeoJSONLayerView
|
|
|
|
from .models import CaseStudy
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.index, name='index'),
|
|
url(r'^data.geojson$',
|
|
GeoJSONLayerView.as_view(model=CaseStudy, geometry_field='location'),
|
|
name='data')
|
|
]
|