feat: initial commit - Band Management application

This commit is contained in:
2026-01-06 03:11:46 +01:00
commit 34e12e00b3
24543 changed files with 3991790 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
from django.urls import path
from .views import InvoiceView, InvoicePrintView
from django.contrib.auth.decorators import login_required
urlpatterns = [
path(
"app/invoice/list/",
login_required(InvoiceView.as_view(template_name="app_invoice_list.html")),
name="app-invoice-list",
),
path(
"app/invoice/preview/",
login_required(InvoiceView.as_view(template_name="app_invoice_preview.html")),
name="app-invoice-preview",
),
path(
"app/invoice/edit/",
login_required(InvoiceView.as_view(template_name="app_invoice_edit.html")),
name="app-invoice-edit",
),
path(
"app/invoice/add/",
login_required(InvoiceView.as_view(template_name="app_invoice_add.html")),
name="app-invoice-add",
),
path(
"app/invoice/print/",
login_required(InvoicePrintView.as_view(template_name="app_invoice_print.html")),
name="app-invoice-print",
),
]