Files
timerr/apps/reports/urls.py
T
MS.Kondratev 0feeaad4fa
Build and publish Docker image / publish (push) Successful in 12s
feat: export consolidated user report PDF
2026-07-15 17:25:40 +05:00

10 lines
275 B
Python

from django.urls import path
from . import views
urlpatterns = [
path("", views.monthly_report, name="monthly-report"),
path("pdf/", views.user_pdf, name="user-report-pdf"),
path("company/<int:company_id>/pdf/", views.company_pdf, name="company-report-pdf"),
]