{% block field %}
<td class="lot-plan" style="position: relative; height: 150px;">
{% set plan = object.getPlan() %}
{% if plan is not null %}
{% set filename = plan.getUnserializedFilename() %}
{% if filename is not empty %}
<img class="minia-plan clickable-image listing-plan" data-toggle="modal" data-backdrop="static" data-target="#planModal-{{ object.id }}" height="130" src="{{ asset('/uploads/pieces_jointes/' ~ filename) }}" alt="Plan du lot" loading="lazy"/>
{% endif %}
{% endif %}
</td>
{% if plan is not null %}
{% set filename = plan.getUnserializedFilename() %}
{% if filename is not empty %}
<div class="modal fade" id="planModal-{{ object.id }}" tabindex="-1" role="dialog" aria-labelledby="planModalLabel-{{ object.id }}" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img class="minia-plan minia-plan-white" width="100%" src="{{ asset('/uploads/pieces_jointes/' ~ filename) }}" alt="Plan du lot"/>
</div>
</div>
</div>
</div>
{% endif %}
{% endif %}
{% endblock %}