mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 05:23:21 +00:00
31 lines
1.3 KiB
Twig
31 lines
1.3 KiB
Twig
<span style="padding:10px 4px 7px;">
|
|
{% if feed_element %}
|
|
<button class="previous_button play" title="{% trans 'boutton::precedent' %}">
|
|
<img src="/skins/lightbox/prev.png" />
|
|
</button>
|
|
<button class="previous_button pause" title="{% trans 'boutton::precedent' %}">
|
|
<img src="/skins/lightbox/prev_pause.png" />
|
|
</button>
|
|
<button class="play_button" title="{% trans 'boutton::demarrer' %}">
|
|
<img src="/skins/lightbox/play.png" />
|
|
</button>
|
|
<button class="pause_button" title="{% trans 'boutton::pause' %}">
|
|
<img src="/skins/lightbox/pause.png" />
|
|
</button>
|
|
<button class="next_button play" title="{% trans 'boutton::suivant' %}">
|
|
<img src="/skins/lightbox/next.png" />
|
|
</button>
|
|
<button class="next_button pause" title="{% trans 'boutton::suivant' %}">
|
|
<img src="/skins/lightbox/next_pause.png" />
|
|
</button>
|
|
<button class="download_button" title="{% trans 'boutton::telecharger' %}">
|
|
<img src="/skins/lightbox/save.png"/>
|
|
</button>
|
|
<form name="download_form" style="display:none;">
|
|
<input type="hidden" name="basrec" value="{{feed_element.get_record().get_serialize_key()}}"/>
|
|
</form>
|
|
|
|
|
{% endif %}
|
|
</span>
|
|
|