9 lines
160 B
Python
9 lines
160 B
Python
|
from django.urls import path
|
||
|
|
||
|
from .views import BudgetListView
|
||
|
|
||
|
app_name = "frontend"
|
||
|
urlpatterns = [
|
||
|
path("", BudgetListView.as_view(), name="budget"),
|
||
|
]
|