68 lines
3.2 KiB
Twig
68 lines
3.2 KiB
Twig
{% import "Pagewidget/constants.twig" as constants %}
|
|
|
|
{% set stylewidget = constants.mystylewidget(entity) %}
|
|
{% set stylewidgetmenu = constants.mystylewidgetmenu(entity) %}
|
|
{% set stylewidgetheader = constants.mystylewidgetheader(entity) %}
|
|
{% set stylewidgetbody = constants.mystylewidgetbody(entity) %}
|
|
{% set stylewidgetbodyreverse = constants.mystylewidgetbodyreverse(entity) %}
|
|
{% set stylewidgetbodyframe = constants.mystylewidgetbodyframe(entity) %}
|
|
|
|
{% set colorbodyback = entity.colorbodyback %}
|
|
{% if colorbodyback is null %}
|
|
{% set colorbodyback = app.session.get('colorbgbodydark') %}
|
|
{% endif %}
|
|
|
|
{% set colorbodyfont = entity.colorbodyfont %}
|
|
{% if entity.border and colorbodyfont is null %}
|
|
{% set colorbodyfont = app.session.get('colorfttitledark') %}
|
|
{% endif %}
|
|
|
|
{% if colorbodyfont is null %}
|
|
{% set colorbodyfont = app.session.get('colorbgbodydark') %}
|
|
{% endif %}
|
|
|
|
{%if mini %}
|
|
<div class="widget widget-mini widget-file" data-id="{{ entity.id }}" loc="{{ entity.loc }}">
|
|
<div class="widgetheader">
|
|
<a style="cursor:pointer" onClick="bigWidget({{entity.id}})">
|
|
{% if entity.icon %}
|
|
<img src="/{{ appAlias }}/{{ entity.icon.label }}" class="logo" title="{{ entity.name }}"/>
|
|
{% else %}
|
|
<img src="/{{ appAlias }}/uploads/icon/icon_pin.png" class="logo" title="{{ entity.name }}"/>
|
|
{% endif %}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% else %}
|
|
<div class="widget {%if entity.border %} widget-bordered {%else%} widget-notbordered {%endif%} widget-file" data-id="{{ entity.id }}" loc="{{ entity.loc }}" style="{{ stylewidget }}" height="{{ entity.height }}px">
|
|
<div class="widgetmenu">
|
|
{% if canupdate %}
|
|
<i class="fa fa-trash fa-fw" title="Supprimer le Widget" onClick="delWidget({{ entity.id }})" style="{{ stylewidgetmenu }}"></i>
|
|
<i class="fa fa-file fa-fw" title="Modifier le Widget" onClick="modWidget({{ entity.id }})" style="{{ stylewidgetmenu }}"></i>
|
|
{% endif %}
|
|
|
|
{% if look=="list" %}
|
|
<i class="glyphicon glyphicon-resize-small" title="Réduire le Widget" onClick="smallWidget({{ entity.id }})" style="{{ stylewidgetmenu }}"></i>
|
|
{% else %}
|
|
<i class="glyphicon glyphicon-resize-full" title="Agrandir le Widget" onClick="bigWidget({{ entity.id }})" style="{{ stylewidgetmenu }}"></i>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="widgetheader" style="{{ stylewidgetheader }}">
|
|
{% if entity.icon %}
|
|
<img src="/{{ appAlias }}/{{ entity.icon.label }}" class="logo"/>
|
|
{% else %}
|
|
<img src="/{{ appAlias }}/uploads/icon/icon_pin.png" class="logo"/>
|
|
{% endif %}
|
|
<span class="title">{{ entity.name }}</span>
|
|
</div>
|
|
|
|
<div class="widgetbody" style="{{ stylewidgetbody }}">
|
|
<iframe id="frame-{{directory}}" src="{{ path("app_"~access~"_file_list",{'directory':directory,'defaultview':view}) }}" data-color="#{{colorbodyfont}}" style="{{ stylewidgetbodyframe }}" class="{% if not entity.autoajust %}notframeajust {% endif %}"></iframe>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
|