* Added pre commit hook * Run pre commit hook on all files --------- Co-authored-by: Horilla <131998600+horilla-opensource@users.noreply.github.com>
12 lines
191 B
Python
12 lines
191 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"),
|
|
]
|