parent
10ca0cd7f1
commit
6be7f3c3cd
10 changed files with 128 additions and 0 deletions
13
app/export/urls.py
Normal file
13
app/export/urls.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
from django.urls import path
|
||||
|
||||
from .views import (
|
||||
export_birds,
|
||||
export_costs,
|
||||
site_exports,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
path("", site_exports, name="site_exports"),
|
||||
path("birds/", export_birds, name="export_birds"),
|
||||
path("costs/", export_costs, name="export_costs"),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue