{{ customContent('details.top', _context) }} {% if attribute(entity, 'getCategory') is defined and method_exists(entity, 'getCategory') %} {% trans %}mautic.core.category{% endtrans %} {{ entity.getCategory() is object ? entity.getCategory().getTitle() : 'mautic.core.form.uncategorized'|trans }} {% endif %} {% if attribute(entity, 'getCreateByUser') is defined %} {% if entity.getCreatedByUser() %} {% trans %}mautic.core.createdby{% endtrans %} {{ entity.getCreatedByUser() }} {% endif %} {% trans %}mautic.core.created{% endtrans %} {{ dateToFull(entity.getDateAdded()) }} {% endif %} {% if attribute(entity, 'getModifiedByUser') is defined %} {% set modified = entity.getModifiedByUser() %} {% if modified %} {% trans %}mautic.core.modifiedby{% endtrans %} {{ entity.getModifiedByUser() }} {% trans %}mautic.core.modified{% endtrans %} {{ dateToFull(entity.getDateModified()) }} {% endif %} {% endif %} {% if attribute(entity, 'getPublishUp') is defined and method_exists(entity, 'getPublishUp') %} {% trans %}mautic.page.publish.up{% endtrans %} {{ entity.getPublishUp() is not null ? dateToFull(entity.getPublishUp()) : dateToFull(entity.getDateAdded()) }} {% trans %}mautic.page.publish.down{% endtrans %} {{ entity.getPublishDown() is not null ? dateToFull(entity.getPublishDown()) : 'mautic.core.never'|trans }} {% endif %} {% if attribute(entity, 'getId') is defined %} {% trans %}mautic.core.id{% endtrans %} {{ entity.getId() }} {% endif %} {{ customContent('details.bottom', _context) }}