{% for column in column_names %}
{% set timestamp = afterhour.date.timestamp %}
{% if column == 'date' %}
{% include 'page-elements/components/forms/input-datepicker.twig' with {
"value" : attribute(afterhour,column)|date('Y-m-d') ,
"disabled" : true
} %}
{% elseif column == "minutes" %}
{% include 'page-elements/components/forms/input-standard-value.twig' with {
type : "number",
value : attribute(afterhour,column),
disabled : true,
min : 1,
attrs : "data-validate-form-element=true"
}%}
{% else %}
{{ attribute(afterhour,column) }}
{% endif %}
|
{% endfor %}
{% include 'modules/common/components/table-cells/actions.html.twig' with {
"trash": true,
"edit": true,
"save": true
} %}
{% endfor %}