templates/admin/crud/field/update-history.html.twig line 1

Open in your IDE?
  1. {% if field.value is not empty %}
  2.     <div class="form-panel">
  3.         <div class="form-panel-body  show">
  4.             <dl class="datalist">
  5.                 {% for history in field.value %}
  6.                     <div class="data-row field-text">
  7.                         <dd>{{ history.user }}</dd>
  8.                         <dd> {{ history.updatedAt|format_datetime('short', 'none', locale='fr')  }}</dd>
  9.                     </div>
  10.                 {% endfor %}
  11.             </dl>
  12.         </div>
  13.     </div>
  14. {% endif %}