vkk.workhours.accounting.costs.urls

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