Files
kimai2/templates/timesheet-team/index.html.twig
Kevin Papst 98a3fc99a2 store search in session (#2735)
* allow to detect used query filters
* allow to set label in action buttons
* allow to reset last search from session
* migrate invoice archive to new search system
* display number of used search filters
2021-08-26 01:37:40 +02:00

17 lines
626 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', query) }}{% endblock %}
{% block row_action %}
{{- actions.timesheet_team(entry, 'index') -}}
{% endblock %}