<!-- Retour Global -->
<div class="col-12 add">
{% if stack.navH is defined and stack.navH is not null %}
Retour Global <i class="fas fa-arrow-up"></i> :
{% if app.user is not null %}
<a href="{{ path("webSite_stacks_show", { "id" : stack.navH, 'recherche': recherche }) }}">
{% else %}
<a href="{{ path("visiteur_stacks_show", { "id" : stack.navH, 'recherche': recherche }) }}">
{% endif %}
{{ stack.navH }}
</a>
Catégorie/Séquences/Cards :
{% if app.user is not null %}
<a href="{{ path("webSite_stacks_show", { "id" : stack.navH, 'recherche': recherche }) }}">
{% else %}
<a href="{{ path("visiteur_stacks_show", { "id" : stack.navH, 'recherche': recherche }) }}">
{% endif %}
{{ stackH.Scategorie.nom }} | {{ stackH.Ssequence.nom }} | {{ stackH.nom }}
</a>
{% endif %}
</div>
<!-- Arrière -->
<div class="col-12 add">
{% if stack.navG is defined and stack.navG is not null %}
Arrière <i class="fas fa-arrow-left"></i> :
{% if app.user is not null %}
<a href="{{ path("webSite_stacks_show", { "id" : stack.navG, 'recherche': recherche }) }}">
{% else %}
<a href="{{ path("visiteur_stacks_show", { "id" : stack.navG, 'recherche': recherche }) }}">
{% endif %}
{{ stack.navG }}
</a>
Catégorie/Séquences/Cards :
{% if app.user is not null %}
<a href="{{ path("webSite_stacks_show", { "id" : stack.navG, 'recherche': recherche }) }}">
{% else %}
<a href="{{ path("visiteur_stacks_show", { "id" : stack.navG, 'recherche': recherche }) }}">
{% endif %}
{{ stackG.Scategorie.nom }} | {{ stackG.Ssequence.nom }} | {{ stackG.nom }}
</a>
{% endif %}
</div>
<!-- Avant -->
<div class="col-12 add">
{% if stack.navD is defined and stack.navD is not null %}
Avant <i class="fas fa-arrow-right"></i> :
{% if app.user is not null %}
<a href="{{ path("webSite_stacks_show", { "id" : stack.navD, 'recherche': recherche }) }}">
{% else %}
<a href="{{ path("visiteur_stacks_show", { "id" : stack.navD, 'recherche': recherche }) }}">
{% endif %}
{{ stack.navD }}
</a>
Catégorie/Séquences/Cards :
{% if app.user is not null %}
<a href="{{ path("webSite_stacks_show", { "id" : stack.navD, 'recherche': recherche }) }}">
{% else %}
<a href="{{ path("visiteur_stacks_show", { "id" : stack.navD, 'recherche': recherche }) }}">
{% endif %}
{{ stackD.Scategorie.nom }} | {{ stackD.Ssequence.nom }} | {{ stackD.nom }}
</a>
{% endif %}
</div>
<!-- Retour Séq -->
<div class="col-12 add">
{% if stack.navBG is defined and stack.navBG is not null %}
Retour Séq. <i class="fas fa-arrow-down"></i> :
{% if app.user is not null %}
<a href="{{ path("webSite_stacks_show", { "id" : stack.navBG, 'recherche': recherche }) }}">
{% else %}
<a href="{{ path("visiteur_stacks_show", { "id" : stack.navBG, 'recherche': recherche }) }}">
{% endif %}
{{ stack.navBG }}
</a>
Catégorie/Séquences/Cards :
{% if app.user is not null %}
<a href="{{ path("webSite_stacks_show", { "id" : stack.navBG, 'recherche': recherche }) }}">
{% else %}
<a href="{{ path("visiteur_stacks_show", { "id" : stack.navBG, 'recherche': recherche }) }}">
{% endif %}
{{ stackBG.Scategorie.nom }} | {{ stackBG.Ssequence.nom }} | {{ stackBG.nom }}
</a>
{% endif %}
</div>
<!-- Rollover / Click -->
<div class="col-12 add">
{% if stack.zones is defined and stack.zones is not null %}
{% set i = 0 %}
{% for zone in stack.zones %}
{% if zone.rollover is defined and zone.rollover is not null %}
Rollover <i class="fas fa-vector-square"></i> :
{% if app.user is not null %}
<a href="{{ path("webSite_stacks_show", { "id" : zone.rollover, 'recherche': recherche }) }}">
{% else %}
<a href="{{ path("visiteur_stacks_show", { "id" : zone.rollover, 'recherche': recherche }) }}">
{% endif %}
{{ zone.rollover }}
</a>
Catégorie/Séquences/Cards :
{% if stackZones[i] is not null %}
{% if app.user is not null %}
<a href="{{ path("webSite_stacks_show", { "id" : zone.rollover, 'recherche': recherche }) }}">
{% else %}
<a href="{{ path("visiteur_stacks_show", { "id" : zone.rollover, 'recherche': recherche }) }}">
{% endif %}
{{ stackZones[i].Scategorie.nom }} | {{ stackZones[i].Ssequence.nom }} | {{ stackZones[i].nom }}
</a>
<br>
{% endif %}
{% endif %}
{% if zone.destination is defined and zone.destination is not null %}
Click <i class="fas fa-compress-arrows-alt"></i> :
{% if app.user is not null %}
<a href="{{ path("webSite_stacks_show", { "id" : zone.destination, 'recherche': recherche }) }}">
{% else %}
<a href="{{ path("visiteur_stacks_show", { "id" : zone.destination, 'recherche': recherche }) }}">
{% endif %}
{{ zone.destination }}
</a>
Catégorie/Séquences/Cards :
{% if stackZones[i] is not null %}
{% if app.user is not null %}
<a href="{{ path("webSite_stacks_show", { "id" : zone.destination, 'recherche': recherche }) }}">
{% else %}
<a href="{{ path("visiteur_stacks_show", { "id" : zone.destination, 'recherche': recherche }) }}">
{% endif %}
{{ stackZones[i].Scategorie.nom }} | {{ stackZones[i].Ssequence.nom }} | {{ stackZones[i].nom }}
</a>
<br>
{% endif %}
{% endif %}
{% set i = i + 1 %}
{% endfor %}
{% endif %}
</div>
<!-- Timer -->
{% if stack.timers is defined and stack.timers is not null %}
{% for timer in stack.timers %}
<div class="col-12 add">
Timer <i class="fas fa-clock"></i> :
{% if app.user is not null %}
<a href="{{ path("webSite_stacks_show", { "id" : timer.destination, 'recherche': recherche }) }}">
{% else %}
<a href="{{ path("visiteur_stacks_show", { "id" : timer.destination, 'recherche': recherche }) }}">
{% endif %}
{{ timer.duree / 1000 }}s -> {{ timer.destination }}
</a>
Catégorie/Séquences/Cards :
{% if app.user is not null %}
<a href="{{ path("webSite_stacks_show", { "id" : timer.destination, 'recherche': recherche }) }}">
{% else %}
<a href="{{ path("visiteur_stacks_show", { "id" : timer.destination, 'recherche': recherche }) }}">
{% endif %}
{{ stackTimer.Scategorie.nom }} | {{ stackTimer.Ssequence.nom }} | {{ stackTimer.nom }}
</a>
</div>
{% endfor %}
{% endif %}