drought/export/urls.py

11 lines
215 B
Python

from django.urls import path
from djgeojson.views import GeoJSONLayerView
from graphic.models import Address, Station, Grid
from . import views
urlpatterns = [
path('pdf/',views.myview,name = 'export-pdf')
]