mirror of
https://github.com/jbcr/core.git
synced 2026-04-28 11:13:10 +02:00
56 lines
1.4 KiB
Twig
56 lines
1.4 KiB
Twig
{% include '@bolt/_partials/fields/select.html.twig' with {
|
|
'label' : 'field.status'|trans,
|
|
'name' : 'status',
|
|
'value' : [record.status],
|
|
'options' : record.statusoptions,
|
|
'form' : 'editcontent',
|
|
'allowempty' : false
|
|
} %}
|
|
|
|
{% include '@bolt/_partials/fields/date.html.twig' with {
|
|
'label' : 'field.createdAt'|trans,
|
|
'name' : 'createdAt',
|
|
'value' : record.createdAt,
|
|
'disabled' : true,
|
|
'mode' : 'datetime',
|
|
'form' : 'editcontent'
|
|
} %}
|
|
|
|
{% include '@bolt/_partials/fields/date.html.twig' with {
|
|
'label' : 'field.modifiedAt'|trans,
|
|
'name' : 'modifiedAt',
|
|
'value' : record.modifiedAt,
|
|
'disabled' : true,
|
|
'mode' : 'datetime',
|
|
'form' : 'editcontent'
|
|
} %}
|
|
|
|
{% include '@bolt/_partials/fields/date.html.twig' with {
|
|
'label' : 'field.publishedAt'|trans,
|
|
'name' : 'publishedAt',
|
|
'value' : record.publishedAt,
|
|
'mode' : 'datetime',
|
|
'form' : 'editcontent'
|
|
} %}
|
|
|
|
{% include '@bolt/_partials/fields/date.html.twig' with {
|
|
'label' : 'field.depublishedAt'|trans,
|
|
'name' : 'depublishedAt',
|
|
'mode' : 'datetime',
|
|
'form' : 'editcontent'
|
|
} %}
|
|
|
|
{% include '@bolt/_partials/fields/text.html.twig' with {
|
|
'label' : 'field.author'|trans,
|
|
'name' : 'author',
|
|
'value' : record.author.displayName,
|
|
'disabled' : true
|
|
} %}
|
|
|
|
{% include '@bolt/_partials/fields/text.html.twig' with {
|
|
'label' : 'field.id'|trans,
|
|
'name' : 'id',
|
|
'value' : record.id,
|
|
'disabled' : true
|
|
} %}
|