* set default times for daterange objects * allow to show order and order by fields * move search to modal * more options for page size * save export visibility in cookie
98 lines
5.6 KiB
Twig
98 lines
5.6 KiB
Twig
{% extends 'base.html.twig' %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
{% import "macros/datatables.html.twig" as tables %}
|
|
{% import "macros/search.html.twig" as search %}
|
|
{% import "customer/actions.html.twig" as actions %}
|
|
|
|
{% set columns = {
|
|
'name': {'class': 'alwaysVisible'},
|
|
'comment': {'class': 'hidden-xs hidden-sm', 'title': 'label.description'|trans},
|
|
'number': {'class': 'hidden-xs hidden-sm hidden'},
|
|
'company': {'class': 'hidden-xs hidden-sm hidden'},
|
|
'vat_id': {'class': 'hidden-xs hidden-sm hidden'},
|
|
'contact': {'class': 'hidden-xs hidden-sm hidden'},
|
|
'address': {'class': 'hidden-xs hidden-sm hidden'},
|
|
'country': {'class': 'hidden-xs hidden-sm hidden'},
|
|
'currency': {'class': 'hidden-xs hidden-sm hidden'},
|
|
'phone': {'class': 'hidden-xs hidden-sm hidden'},
|
|
'fax': {'class': 'hidden-xs hidden-sm hidden'},
|
|
'mobile': {'class': 'hidden-xs hidden-sm hidden'},
|
|
'email': {'class': 'hidden-xs hidden-sm hidden'},
|
|
'homepage': {'class': 'hidden-xs hidden-sm hidden'},
|
|
} %}
|
|
{% for field in metaColumns %}
|
|
{% set columns = columns|merge({
|
|
('mf_' ~ field.name): {'title': field.label|trans, 'class': 'hidden-xs hidden-sm', 'orderBy': false}
|
|
}) %}
|
|
{% endfor %}
|
|
{% set columns = columns|merge({
|
|
'budget': {'class': 'hidden-xs hidden-sm hidden text-center w-min'},
|
|
'timeBudget': {'class': 'hidden-xs hidden-sm hidden text-center w-min'},
|
|
'team': {'class': 'text-center w-min', 'orderBy': false},
|
|
'visible': {'class': 'text-center hidden w-min'},
|
|
'actions': {'class': 'actions alwaysVisible'},
|
|
}) %}
|
|
|
|
{% set tableName = 'customer_admin' %}
|
|
|
|
{% block page_title %}{{ 'admin_customer.title'|trans }}{% endblock %}
|
|
{% block page_search %}{{ search.searchModal(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.nothing_found('kimai.customerUpdate kimai.customerTeamUpdate') }}
|
|
{% else %}
|
|
{{ tables.datatable_header(tableName, columns, query, {'reload': 'kimai.customerUpdate kimai.customerTeamUpdate'}) }}
|
|
|
|
{% for entry in entries %}
|
|
<tr{% if is_granted('view', entry) %} class="alternative-link open-edit" data-href="{{ path('customer_details', {'id': entry.id}) }}"{% endif %}>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'name') }}">{{ widgets.label_color_dot('customer', true, entry.name, null, entry.color) }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'comment') }}">{{ entry.comment|comment2html }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'number') }}">{{ entry.number }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'company') }}">{{ entry.company }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'vat_id') }}">{{ entry.vatId }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'contact') }}">{{ entry.contact }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'address') }}">{{ entry.address }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'country') }}">{{ entry.country|country }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'currency') }}">{{ entry.currency|currency }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'phone') }}">{{ entry.phone }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'fax') }}">{{ entry.fax }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'mobile') }}">{{ entry.mobile }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'email') }}">{{ entry.email }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'homepage') }}">{{ entry.homepage }}</td>
|
|
{% for field in metaColumns %}
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'mf_' ~ field.name) }}">
|
|
{{ tables.datatable_meta_column(entry, field) }}
|
|
</td>
|
|
{% endfor %}
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'budget') }}">
|
|
{% if entry.hasBudget() %}
|
|
{{ entry.budget|money(entry.currency) }}
|
|
{% else %}
|
|
–
|
|
{% endif %}
|
|
</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'timeBudget') }}">
|
|
{% if entry.hasBudget() %}
|
|
{{ entry.timeBudget|duration }}
|
|
{% else %}
|
|
–
|
|
{% endif %}
|
|
</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'team') }}">{{ widgets.badge_team_access(entry.teams) }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'visible') }}">{{ widgets.label_visible(entry.visible) }}</td>
|
|
<td class="{{ tables.data_table_column_class(tableName, columns, 'actions') }}">{{ actions.customer(entry, 'index') }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
{{ tables.data_table_footer(entries, 'admin_customer_paginated') }}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|