implement report feature
This commit is contained in:
parent
4218ee6b7d
commit
d6d47f714a
31 changed files with 2472 additions and 8 deletions
14
app/reports/urls.py
Normal file
14
app/reports/urls.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
app_name = 'reports'
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.reports_dashboard, name='dashboard'),
|
||||
path('manual/', views.manual_report, name='manual_report'),
|
||||
path('automatic/', views.automatic_reports, name='automatic_reports'),
|
||||
path('automatic/create/', views.create_automatic_report, name='create_automatic_report'),
|
||||
path('automatic/<int:report_id>/edit/', views.edit_automatic_report, name='edit_automatic_report'),
|
||||
path('automatic/<int:report_id>/delete/', views.delete_automatic_report, name='delete_automatic_report'),
|
||||
path('logs/', views.report_logs, name='report_logs'),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue