{% extends 'base.html.twig' %} {% import "macros/widgets.html.twig" as widgets %} {% import "macros/datatables.html.twig" as tables %} {% import "macros/toolbar.html.twig" as toolbar %} {% import "customer/actions.html.twig" as actions %} {% set showVisibility = query.visibility != 1 %} {% set columns = { 'name': 'alwaysVisible', 'comment': {'class': 'hidden-xs hidden-sm', 'title': 'label.description'|trans}, } %} {% for field in metaColumns %} {% set columns = columns|merge({ ('mf_' ~ field.name): {'title': field.label, 'class': 'hidden-xs hidden-sm', 'orderBy': false} }) %} {% endfor %} {% set columns = columns|merge({ 'team': {'class': 'text-center', 'orderBy': false}, }) %} {% if showVisibility %} {% set columns = columns|merge({ 'visible': {'class': 'text-center', 'orderBy': false}, }) %} {% endif %} {% set columns = columns|merge({ 'actions': 'actions alwaysVisible', }) %} {% set tableName = 'customer_admin' %} {% block page_title %}{{ 'admin_customer.title'|trans }}{% endblock %} {% block page_search %}{{ toolbar.dropDownSearch(toolbarForm) }}{% endblock %} {% block page_actions %}{{ actions.customers('index') }}{% endblock %} {% block main_before %} {{ tables.data_table_column_modal(tableName, columns) }} {% endblock %} {% block main %} {% if entries.count == 0 %} {{ widgets.callout('warning', 'error.no_entries_found') }} {% else %} {{ tables.datatable_header(tableName, columns, query, {'reload': 'kimai.customerUpdate kimai.customerTeamUpdate'}) }} {% for entry in entries %} {{ widgets.label_color_dot('customer', true, entry.name, null, entry.color) }} {{ entry.comment|comment2html }} {% for field in metaColumns %} {{ tables.datatable_meta_column(entry, field) }} {% endfor %} {% if entry.teams|length > 0 %} {{ widgets.badge_counter(entry.teams|length) }} {% else %} {{ widgets.icon('unlocked') }} {% endif %} {% if showVisibility %} {{ widgets.label_visible(entry.visible) }} {% endif %} {{ actions.customer(entry, 'index') }} {% endfor %} {{ tables.data_table_footer(entries, 'admin_customer_paginated') }} {% endif %} {% endblock %}