vkk.workhours.accounting.projects.project.export.urls
This submodule contains the routing configuration.
1""" 2This submodule contains the routing configuration. 3""" 4 5from django.urls import include, path 6from django.utils.translation import gettext_lazy as _ 7from vkk.workhours.accounting.views import AccountingOverView 8 9app_name='export' 10urlpatterns = [ 11 path( 12 _('overview/'), 13 AccountingOverView.as_view( 14 template_name='vkk/workhours/accounting/projects/project/export/overview.html' 15 ), 16 name='overview', 17 ), 18 path(_('funded_staff/'), include('vkk.workhours.accounting.projects.project.export.funded_staff.urls')), 19 path(_('receipts/'), include('vkk.workhours.accounting.projects.project.export.receipts.urls')), 20]
app_name =
'export'
urlpatterns =
[<URLPattern 'uebersicht/' [name='overview']>, <URLResolver <module 'vkk.workhours.accounting.projects.project.export.funded_staff.urls' from '/home/lorenz/Dokumente/projektmedizin/app/vkk/workhours/accounting/projects/project/export/funded_staff/urls.py'> (funded_staff:funded_staff) 'projektfinanzierte_mitarbeiter_innen/'>, <URLResolver <module 'vkk.workhours.accounting.projects.project.export.receipts.urls' from '/home/lorenz/Dokumente/projektmedizin/app/vkk/workhours/accounting/projects/project/export/receipts/urls.py'> (receipts:receipts) 'belege/'>]