You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
402 B
15 lines
402 B
from django.conf.urls import include
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = 'tasks'
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name='index'),
|
|
path('htmx/create-task-form/', views.create_task_form, name='create-task-form'),
|
|
path('htmx/task-item/<id>/', views.task_item, name='task-item'),
|
|
path('htmx/task-item/<id>/delete/', views.task_delete, name='task-delete'),
|
|
]
|
|
|