Files
Phraseanet/templates/web/prod/WorkZone/Story.html.twig
2012-10-04 15:43:36 +02:00

82 lines
3.4 KiB
Twig

<div style="margin:0 7px;overflow:hidden;">
{% set story_length = Story.get_children().get_elements()|length %}
<div class="tools">
<button class="ui-corner-all TOOL_disktt_btn story_window" title="{% trans 'action : exporter' %}">
<img src="/skins/prod/000000/images/disktt_history.gif"/>
</button>
<button class="ui-corner-all TOOL_print_btn story_window" title="{% trans 'action : print' %}">
<img src="/skins/prod/000000/images/print_history.gif"/>
</button>
{% if app['phraseanet.user'].ACL().has_right('modifyrecord') %}
<button class="ui-corner-all TOOL_ppen_btn story_window" title="{% trans 'action : editer' %}">
<img src="/skins/prod/000000/images/ppen_history.gif"/>
</button>
{% endif %}
{% if app['phraseanet.user'].ACL().has_right('changestatus') %}
<button class="ui-corner-all TOOL_chgstatus_btn story_window" title="{% trans 'action : status' %}">
<img src="/skins/prod/000000/images/chgstatus_history.gif"/>
</button>
{% endif %}
{% if app['phraseanet.user'].ACL().has_right('deleterecord') and app['phraseanet.user'].ACL().has_right('addrecord') %}
<button class="ui-corner-all TOOL_chgcoll_btn story_window" title="{% trans 'action : collection' %}">
<img src="/skins/prod/000000/images/chgcoll_history.gif"/>
</button>
{% endif %}
{% if app['phraseanet.user'].ACL().has_right('push') %}
<button class="ui-corner-all TOOL_pushdoc_btn story_window" title="{% trans 'action : push' %}">
<img src="/skins/icons/push16.png"/>
</button>
{% endif %}
{% if app['phraseanet.user'].ACL().has_right('push') %}
<button class="ui-corner-all TOOL_feedback_btn story_window" title="{% trans 'Feedback' %}">
<img src="/skins/icons/feedback16.png"/>
</button>
{% endif %}
{% if app['phraseanet.user'].ACL().has_right('bas_chupub') %}
<button class="ui-corner-all TOOL_bridge_btn story_window" title="{% trans 'action : bridge' %}">
<img src="/skins/icons/door.png"/>
</button>
<button class="ui-corner-all TOOL_publish_btn story_window" title="{% trans 'action : publier' %}">
<img src="/skins/icons/rss16.png"/>
</button>
{% endif %}
{% if app['phraseanet.user'].ACL().has_right('doctools') %}
<button class="ui-corner-all TOOL_imgtools_btn story_window" title="{% trans 'action : outils' %}">
<img src="/skins/prod/000000/images/imgtools_history.gif"/>
</button>
{% endif %}
<button class="ui-corner-all TOOL_trash_btn story_window" title="{% trans 'action : supprimer' %}">
<img src="/skins/icons/delete.png"/>
<input type="hidden" name="story_key" value="{{ Story.get_serialize_key() }}"/>
</button>
</div>
<div class="alert_datas_changed ui-corner-all">
{% trans 'Certaines donnees du reportage ont change' %}
<a class="basket_refresher" href="#">
{% trans 'rafraichir' %}
</a>
</div>
{% if story_length == 0 %}
<div style="height:120px;"></div>
{% endif %}
{% set basket_scope = 'groupings'%}
{% import 'prod/WorkZone/Macros.html.twig' as Macros %}
{% for record in Story.get_children().get_elements() %}
<span class="wrapCHIM_{{ record.get_serialize_key() }}">
{{ Macros.element('groupings', Story, record, record, record.get_number()) }}
</span>
{% endfor %}
</div>