* 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
17 lines
626 B
Twig
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 %}
|