mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-14 14:33:02 +01:00
1e2316d76f
- Ajout du principe de relations entre type d'objets (LSrelation) Exemple : Utilisateur appartenant à un groupe - Ajout du LSformElement_select_object : Sélection d'un objet à travers une interface plus conviviale qu'une liste déroulante.
27 lines
929 B
Smarty
27 lines
929 B
Smarty
{include file='top.tpl'}
|
|
{if $pagetitle != ''}<h1>{$pagetitle}</h1>{/if}
|
|
{if $LSview_actions != ''}
|
|
<p class='LSview-actions'>
|
|
{foreach from=$LSview_actions item=item}
|
|
<a href='{$item.url}' class='LSview-actions'><img src='templates/images/{$item.action}.png' alt='{$item.label}' title='{$item.label}' /> {$item.label}</a>
|
|
{/foreach}
|
|
</p>
|
|
{/if}
|
|
{if $LSform_image!=''}
|
|
<div class='LSform_image'>
|
|
<a href='{$LSform_image.img}'><img src='{$LSform_image.img}' class='LSform_image LSsmoothbox' /></a>
|
|
</div>
|
|
{/if}
|
|
<dl class='LSform'>
|
|
{foreach from=$LSform_fields item=field}
|
|
<dt class='LSform'>{$field.label}</dt>
|
|
<dd class='LSform'>{$field.html}</dd>
|
|
{/foreach}
|
|
</dl>
|
|
|
|
{if $LSrelations!=''}
|
|
{foreach from=$LSrelations item=item}
|
|
{include file='LSrelations.tpl'}
|
|
{/foreach}
|
|
{/if}
|
|
{include file='bottom.tpl'}
|