Files
WYGIWYH/app/apps/common/urls.py

17 lines
267 B
Python

from django.urls import path
from . import views
urlpatterns = [
path(
"toasts/",
views.toasts,
name="toasts",
),
path(
"ui/month-year-picker/",
views.month_year_picker,
name="month_year_picker",
),
]