removed setting for table icons and improved responsivness by hiding several columns on small screens

This commit is contained in:
Kevin Papst
2018-01-01 16:27:33 +01:00
parent 2f09ea7c74
commit 588c0b85ed
7 changed files with 59 additions and 61 deletions

View File

@@ -26,9 +26,8 @@
<table class="table table-striped table-hover dataTable" role="grid">
<thead>
<tr>
{% for title, icon in entries %}
<th>
{% if kimai_context.table_icons and icon %}<i class="fa fa-{{ icon }}"></i>{% endif %}
{% for title, class in entries %}
<th{% if class %} class="{{ class }}"{% endif %}>
{{ title|trans }}
</th>
{% endfor %}