mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-10 12:33:15 +01:00
92701517d7
-> templates -> images -> css - Ajout d'un thème black en plus du thème par défaut
15 lines
761 B
Smarty
15 lines
761 B
Smarty
<h1 id='LSrelation_title_{$item.id}' class='LSrelation'>{$item.label}</h1>
|
|
{if $item.actions!=''}
|
|
<ul class='LSview-actions'>
|
|
{foreach from=$item.actions item=action}
|
|
<li class='LSview-actions'><a href='{$action.url}' class='LSview-actions LSrelation_modify' id='{$item.id}'><img src='{$LS_IMAGES_DIR}/{$action.action}.png' alt='{$action.label}' title='{$action.label}' /> {$action.label}</a></li>
|
|
{/foreach}
|
|
</ul>
|
|
{/if}
|
|
<ul id='LSrelation_ul_{$item.id}' class='LSrelation'>
|
|
{foreach from=$item.objectList item=object}
|
|
<li class='LSrelation'><a href='view.php?LSobject={$item.LSobject}&dn={$object.dn}' class='LSrelation' id='{$object.dn}'>{$object.text}</a></li>
|
|
{foreachelse}
|
|
<li class='LSrelation'>{$item.emptyText}</li>
|
|
{/foreach}
|
|
</ul>
|