preview_image_o.html.twig 390 Bytes
Newer Older
Julien Jorry committed
1 2 3 4
{% extends '@SonataAdmin/CRUD/base_list_field.html.twig' %}

{% block field%}
    {# <img src="{{ vich_uploader_asset(object, 'file') }}" alt="" style="max-height: 50px; max-width: 50px;" /> #}
5 6 7 8 9
    {% if object.image is defined %}
    	{% thumbnail object.image, 'small' %}
    {% elseif object.media is defined %}
    	{% thumbnail object.media, 'preview' %}
    {% endif %}
Julien Jorry committed
10
{% endblock %}