Reportes
This commit is contained in:
@@ -1,12 +1,14 @@
|
||||
from django.urls import path, include
|
||||
from .views import ExportModelView, dashboard_summary
|
||||
# from .views_stats import documentos_por_fecha
|
||||
from .views_table import table_summary
|
||||
from .views_table import table_summary, report_document_status, report_document_list, report_document_download
|
||||
|
||||
urlpatterns = [
|
||||
path('exportmodel/', ExportModelView.as_view(), name='export-model'),
|
||||
path('dashboard/summary/', dashboard_summary, name='dashboard-summary'),
|
||||
#path('documentos-por-fecha/', documentos_por_fecha, name='documentos-por-fecha'),
|
||||
path('table-summary/', table_summary, name='table-summary'),
|
||||
|
||||
path('report-document-status/<int:report_id>/', report_document_status, name='report_document_status'),
|
||||
path('report-document-list/', report_document_list, name='report_document_list'),
|
||||
path('report-document-download/<int:report_id>/', report_document_download, name='report_document_download'),
|
||||
]
|
||||
Reference in New Issue
Block a user