1from django.urls import include, path
2from django.utils.translation import gettext_lazy as _
3from vkk.workhours.accounting.views import AccountingOverView
4
5app_name='export'
6urlpatterns = [
7 path(
8 _('overview/'),
9 AccountingOverView.as_view(
10 template_name='vkk/workhours/accounting/projects/project/export/overview.html'
11 ),
12 name='overview',
13 ),
14 path(_('funded_staff/'), include('vkk.workhours.accounting.projects.project.export.funded_staff.urls')),
15 path(_('receipts/'), include('vkk.workhours.accounting.projects.project.export.receipts.urls')),
16]