Files
core/templates/content/_fields_aside.html.twig
T
2019-02-14 13:49:00 +01:00

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
} %}