Files
ihrm/horilla_widgets/urls.py
2024-01-31 11:50:53 +05:30

9 lines
184 B
Python

"""
horilla_widget/urls.py
"""
from django.urls import path
from horilla_widgets import views
urlpatterns = [path("get-filter-form", views.get_filter_form, name="get-filter-form"),]