mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-14 06:23:02 +01:00
b88fca55cb
-> help_info ajouté dans la configuration des attributs - LSeepeople : Ajout d'une bulle d'aide pour loginshell - LSdebug : Renomage des fonctions attachées : - debug() -> LSdebug() - debug_pring() -> LSdebug_print() -> Nétoyage des debug dans le code et renomage quand nécessaire. -> Ajout d'une fonctionnalité de dump de variable à LSdebug() - LSsession : Correction d'un problème de chemin pour les scripts JS
19 lines
859 B
Smarty
19 lines
859 B
Smarty
{include file='top.tpl'}
|
|
{if $pagetitle != ''}<h1>{$pagetitle}</h1>{/if}
|
|
|
|
<form action='{$LSform_action}' method='post' class='LSform'>
|
|
{$LSform_header}
|
|
<dl class='LSform'>
|
|
{foreach from=$LSform_fields item=field}
|
|
<dt class='LSform'>{$field.label}{if $field.help_info!=""} <img class='LStips' src="templates/images/help.png" alt='?' title="{$field.help_info}"/>{/if}</dt>
|
|
<dd class='LSform'>{$field.html}{if $field.add != ''} <span class='LSform-addfield'>+ Ajouter un champ</span>{/if}</dd>
|
|
{if $field.errors != ''}
|
|
{foreach from=$field.errors item=error}
|
|
<dd class='LSform LSform-errors'>{$error}</dd>
|
|
{/foreach}
|
|
{/if}
|
|
{/foreach}
|
|
<dd class='LSform'><input type='submit' value='{$LSform_submittxt}' class='LSform' /></dd>
|
|
</dl>
|
|
</form>
|
|
{include file='bottom.tpl'}
|