mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 15:03:25 +00:00
20 lines
769 B
HTML
20 lines
769 B
HTML
{% import 'common/caption_templates/preview.html' as caption %}
|
|
|
|
{% if user.ACL().has_right_on_base(record.get_base_id, 'canmodifrecord') %}
|
|
<div class="edit_button" style="text-align:right">
|
|
<a href="#" onclick="editThis('IMGT','{{record.get_serialize_key()}}');">
|
|
<img style="vertical-align:middle" src="/skins/prod/000000/images/ppen_history.gif" />
|
|
{% trans 'action : editer' %}
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
<div style="text-align:center;">
|
|
{{record.get_status_icons()|raw}}
|
|
</div>
|
|
{% if record.is_from_reg() %}
|
|
{{caption.format_caption(record)}}
|
|
{% else %}
|
|
{{caption.format_caption(record, highlight, searchEngine)}}
|
|
{% endif %}
|
|
<hr style="margin:10px 0;"/>
|
|
{% include 'common/technical_datas.twig' %} |