templates/admin/fields/OrderUitgelichtField.html.twig line 1

Open in your IDE?
  1. {# @var ea \EasyCorp\Bundle\EasyAdminBundle\Context\AdminContext #}
  2. {# @var field \EasyCorp\Bundle\EasyAdminBundle\Dto\FieldDto #}
  3. {# @var entity \EasyCorp\Bundle\EasyAdminBundle\Dto\EntityDto #}
  4. <table>
  5. <tbody>
  6. {% if ea.crud.currentAction == 'detail' %}
  7.     
  8.     {% for key, value in field.formattedValue %}
  9.     <tr><td style="text-align:right; vertical-align:top;color:gray;width:100px "></td>
  10.         <td>
  11.         
  12.     <img alt="" src="uitgelichte-afbeelding/{{ value.entityId }}/{{ value.id }}" style="width:250px">
  13.     </br><a href="download-file/{{value.entityId}}/{{value.id}}">{{ value.name |raw }}</a></br></br>
  14.     </td>
  15.     <td style="padding-left:10px;">
  16.     
  17.     </td>
  18. </tr>
  19.     {% endfor %}
  20.     
  21. {% else %}
  22.     <span title="Message">"Use only on Detailpage"</span>
  23. {% endif %}
  24. </tbody>
  25. </table>