mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 09:53:15 +00:00
32 lines
1.3 KiB
Twig
32 lines
1.3 KiB
Twig
{% import 'common/thumbnail.html.twig' as thumbnail %}
|
|
|
|
{% extends 'prod/Tooltip/Tooltip.html.twig' %}
|
|
|
|
{% set title %} {{ basket.getName() }} {% endset %}
|
|
{% set width = 500 %}
|
|
{% set maxwidth = null %}
|
|
|
|
{% block content %}
|
|
<div class="noToolTipResize" style="margin:5px;width:{{ width - 40 }}px;height:auto !important;height:380px;max-height:380px;min-height:220px;position:relative;">
|
|
<div style="margin:5px 0;max-height:160px;overflow:hidden;text-overflow:ellipsis;">
|
|
{{ basket.getDescription()|nl2br }}
|
|
</div>
|
|
<div style="margin:5px 0;text-align:right;font-style:italic;position:relative;">
|
|
{% set nb_records = basket.getElements()|length %}
|
|
{% set date = app['date-formatter'].getPrettyString(basket.getUpdated()) %}
|
|
{% trans with {'%nb_records%' : nb_records} %}%nb_records% records{% endtrans %}
|
|
- {{ date }}
|
|
<hr/>
|
|
<div style="position:relative;float:left;width:470px;">
|
|
{% for element in basket.getElements() %}
|
|
{% if loop.index <= 10 %}
|
|
<div style="margin:5px;position:relative;float:left;width:80px;height:80px;overflow:hidden;">
|
|
{{ thumbnail.format(element.getRecord(app).get_thumbnail(), 80, 80 , '', false, false) }}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|