ojuso-map/apps/map/urls.py
2017-05-21 01:47:14 +02:00

11 lines
274 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), name='data')
]