Files
timerr/apps/reports/urls.py
T
2026-07-15 00:12:31 +05:00

9 lines
217 B
Python

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