This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/subjects/urls.py

13 lines
333 B
Python
Raw Normal View History

2023-12-19 14:39:59 +01:00
from django.urls import path
from . import views
2024-02-03 22:07:20 +01:00
app_name = 'subjects'
2023-12-19 14:39:59 +01:00
urlpatterns = [
2024-02-03 22:07:20 +01:00
path('', views.main_page, name='list'),
path('new/', views.create_subject, name='create'),
path('link/<int:subject_id>', views.link_subject, name='link'),
path('unlink/<int:subject_id>', views.unlink_subject, name='unlink'),
2023-12-19 14:39:59 +01:00
]