from django.urls import path from apps.dobodbi_calendar.views import CalendarList, AdjustmentConfigView urlpatterns = [ path('occasions/', CalendarList.as_view()), path('adjustemnts/', AdjustmentConfigView.as_view()), ]