{% if field.value is not empty %} <div class="form-panel"> <div class="form-panel-body show"> <dl class="datalist"> {% for history in field.value %} <div class="data-row field-text"> <dd>{{ history.user }}</dd> <dd> {{ history.updatedAt|format_datetime('short', 'none', locale='fr') }}</dd> </div> {% endfor %} </dl> </div> </div>{% endif %}