Files
Phraseanet/templates/web/prod/Tooltip/Basket.html.twig
Nicolas Le Goff 4596bf5d30 Merge branch '3.8'
Conflicts:
	lib/Alchemy/Phrasea/Security/Firewall.php
2014-02-04 11:30:23 +01:00

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 %}