mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-18 15:34:01 +01:00
17 lines
267 B
Python
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",
|
|
),
|
|
]
|