from django.urls import path

from .views import ReportsSummaryView
from .attendance import AttendanceReportView
from .accounting import AccountingReportView
from .debtors import DebtorsReportView
from .daily_payments import DailyPaymentsReportView

urlpatterns = [
    path('summary/', ReportsSummaryView.as_view(), name='reports-summary'),
    path('attendance/', AttendanceReportView.as_view(), name='attendance-report'),
    path('accounting/', AccountingReportView.as_view(), name='accounting-report'),
    path('debtors/', DebtorsReportView.as_view(), name='debtors-report'),
    path('daily-payments/', DailyPaymentsReportView.as_view(), name='daily-payments-report'),
]
