55 lines
2.2 KiB
Twig
55 lines
2.2 KiB
Twig
{% extends 'base.html.twig' %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
{% import "macros/datatables.html.twig" as tables %}
|
|
|
|
{% block page_title %}{{ 'admin_invoice_template.title'|trans }}{% endblock %}
|
|
{% block page_subtitle %}{{ 'admin_invoice_template.subtitle'|trans }}{% endblock %}
|
|
{% block page_actions %}
|
|
{% set actions = {} %}
|
|
{% if is_granted('create_invoice_template') %}
|
|
{% set actions = actions|merge({'create': path('admin_invoice_template_create')}) %}
|
|
{% endif %}
|
|
{% if is_granted('view_invoice') %}
|
|
{% set actions = actions|merge({'invoice': path('invoice')}) %}
|
|
{% endif %}
|
|
{{ widgets.page_actions(actions) }}
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
{% if entries.count == 0 %}
|
|
{{ widgets.callout('warning', 'error.no_entries_found') }}
|
|
{% endif %}
|
|
|
|
{{ tables.data_table_header('invoice_template', {
|
|
'name': 'alwaysVisible',
|
|
'title': '',
|
|
'due_days': 'hidden-xs',
|
|
'vat': 'hidden-xs',
|
|
'actions': 'alwaysVisible',
|
|
}) }}
|
|
|
|
{% for entry in entries %}
|
|
<tr>
|
|
<td>{{ entry.name }}</td>
|
|
<td>{{ entry.title }}</td>
|
|
<td class="hidden-xs hidden-sm">{{ entry.dueDays }}</td>
|
|
<td class="hidden-xs hidden-sm">{{ entry.vat }}</td>
|
|
<td>
|
|
{% set actionButtons = {} %}
|
|
{% if is_granted('edit', entry) %}
|
|
{% set actionButtons = {'edit': path('admin_invoice_template_edit', {'id' : entry.id, 'page': page})} %}
|
|
{% endif %}
|
|
{% if is_granted('create_invoice_template') %}
|
|
{% set actionButtons = actionButtons|merge({'copy': path('admin_invoice_template_copy', {'id' : entry.id, 'page': page})}) %}
|
|
{% endif %}
|
|
{% if is_granted('delete', entry) %}
|
|
{% set actionButtons = actionButtons|merge({'trash': path('admin_invoice_template_delete', {'id' : entry.id, 'page': page})}) %}
|
|
{% endif %}
|
|
{{ widgets.button_group(actionButtons) }}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
{{ tables.data_table_footer(entries, 'admin_invoice_template_paginated') }}
|
|
{% endblock %}
|