Files
kimai2/templates/timesheet-team/index.html.twig
2020-01-07 21:20:45 +01:00

17 lines
619 B
Twig

{% extends 'timesheet/layout-listing.html.twig' %}
{% import "timesheet-team/actions.html.twig" as actions %}
{% set tableName = 'timesheet_admin' %}
{% set paginationRoute = 'admin_timesheet_paginated' %}
{% set editRoute = 'admin_timesheet_edit' %}
{% set canSeeRate = is_granted('view_rate_other_timesheet') %}
{% set canSeeUsername = true %}
{% set allowMarkdown = false %}
{% block page_title %}{{ 'admin_timesheet.title'|trans }}{% endblock %}
{% block page_actions %}{{ actions.timesheets_team('index') }}{% endblock %}
{% block row_action %}
{{- actions.timesheet_team(entry, 'index') -}}
{% endblock %}