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/invoices/urls.py

12 lines
277 B
Python
Raw Normal View History

2024-08-16 22:12:49 +02:00
from django.urls import path
from . import views
app_name = 'invoices'
urlpatterns = [
path('', views.home, name='index'),
path('<int:invoice_id>', views.view_invoice, name='invoice'),
path('print/<int:invoice_id>', views.print_invoice, name='print_invoice'),
]