10 lines
275 B
Python
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"),
|
|
]
|