8 lines
179 B
Python
8 lines
179 B
Python
|
|
from django.urls import path
|
||
|
|
|
||
|
|
from .views import YieldHarvestSummaryView
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path("summary/", YieldHarvestSummaryView.as_view(), name="yield-harvest-summary"),
|
||
|
|
]
|