from django.conf.urls import url from . import views app_name = "mapdata" urlpatterns = [ url( r'^$', views.MapDataList.as_view(), name="list" ), ]