mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
Clean
This commit is contained in:
@@ -109,7 +109,7 @@
|
||||
<b>{{ name }}</b> : {{ value is iterable ? value|join('; ') : value }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% if technical_data|default(true) and app['authentication'].getUser() is not none and app['settings'].getUserSetting(app['authentication'].getUser(), 'technical_display') == 'group' %}
|
||||
{% if technical_data|default(true) and app['authentication'].user is not none and app['settings'].getUserSetting(app['authentication'].user, 'technical_display') == 'group' %}
|
||||
<hr/>
|
||||
{% include 'common/technical_datas.html.twig' %}
|
||||
{% endif %}
|
||||
|
@@ -1,16 +1,16 @@
|
||||
{% if record.isStory() %}
|
||||
{{ 'Story_id' | trans }} : {{ record.recordId() }}<br/>
|
||||
{% if record.isStory %}
|
||||
{{ 'Story_id' | trans }} : {{ record.recordId }}<br/>
|
||||
{% else %}
|
||||
{{ 'Record_id' | trans }} : {{ record.recordId() }}<br/>
|
||||
{{ 'Record_id' | trans }} : {{ record.recordId }}<br/>
|
||||
{% endif %}
|
||||
|
||||
{% if not record.isStory() %}
|
||||
{% if not record.isStory %}
|
||||
{% block td_original_name %}
|
||||
{{ 'Nom Original' | trans }} : {{ record.getOriginalName() }}
|
||||
{{ 'Nom Original' | trans }} : {{ record.getOriginalName }}
|
||||
{% endblock %}
|
||||
|
||||
{% block td_mime %}
|
||||
{{ record.getMimeType() }}
|
||||
{{ record.getMimeType }}
|
||||
{% endblock %}
|
||||
|
||||
{% block td_weight %}
|
||||
|
Reference in New Issue
Block a user