Added some additional columns to part list.

They are hidden by default but can be shown by a colvis button.
This commit is contained in:
Jan Böhmer 2019-09-06 18:25:24 +02:00
parent 16139d1afd
commit 720e1cd04e
10 changed files with 310 additions and 70 deletions

View file

@ -0,0 +1,20 @@
{% extends "base.html.twig" %}
{% block content %}
{# Set the title for the table here. It will be inserted into the table later.#}
<div style="display:none;" id="part-card-header-src">Test</div>
<div id="part_list" class="table-responsive" data-datatable data-settings='{{ datatable_settings(datatable) }}'>
<div class="card-body">
<div class="card">
<div class="card-body">
<h4>{% trans %}part_list.loading.caption{% endtrans %}</h4>
<h6>{% trans %}part_list.loading.message{% endtrans %}</h6>
</div>
</div>
</div>
</div>
{% endblock %}