Files
kimai2/templates/help/index.html.twig
Kevin Papst 25469113fd Release 2.0.2 (#3856)
* allow to overwrite global spreadsheet styles
* bump version
* fix deprecations in vcard download
* bump composer packages
* added help page for all registered locales
* fix menu id's, cleanup times route, fix configurable homepage redirect
* format duration without leading zero in hours (unify javascript with php behavior)
* fix active records in all screen sizes
* improved responsiveness in XS
* fixed invoice number for customer null fields
* fix javascript respects multiple recent-activity dropdowns
* show recent activities on small screens
* fix user-profile layout column in XS
* fix search is always marked as active
2023-02-21 19:21:49 +01:00

25 lines
763 B
Twig

{% extends 'datatable.html.twig' %}
{% import "macros/widgets.html.twig" as widgets %}
{% block datatable_column_value %}
{% if column == 'name' %}
{{ entry.name }}
{% elseif column == 'description' %}
{{ entry.description }}
{% elseif column == 'language' %}
{{ entry.language }}
{% elseif column == 'date' %}
{{ entry.date }}
{% elseif column == 'time' %}
{{ entry.time }}
{% elseif column == 'duration' %}
{{ entry.duration }}
{% elseif column == 'money' %}
{{ entry.money }}
{% elseif column == 'hour_24' %}
{{ widgets.label_boolean(entry.hour_24) }}
{% elseif column == 'rtl' %}
{{ widgets.label_boolean(entry.rtl) }}
{% endif %}
{% endblock %}