We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3275669 commit 5b2693dCopy full SHA for 5b2693d
src/Resources/views/themes/base.html.twig
@@ -519,6 +519,13 @@
519
{{- data_table_theme_block(data_table, 'icon') -}}
520
{%- endblock %}
521
522
+{# @see Kreyu\Bundle\DataTableBundle\Column\Type\DateColumnType #}
523
+{% block column_date_value -%}
524
+ {% with { value: value ? value|date(format, timezone) : value } %}
525
+ {{- block('column_text_value') -}}
526
+ {% endwith %}
527
+{%- endblock %}
528
+
529
{# @see Kreyu\Bundle\DataTableBundle\Column\Type\DateTimeColumnType #}
530
{% block column_date_time_value -%}
531
{% with { value: value ? value|date(format, timezone) : value } %}
0 commit comments