mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-14 06:23:02 +01:00
c1e7664313
-> Affichage du nombre de résultat des recherches -> Possibilité d'activer par défaut le mode récursif d'une recherche. - Documentation : Mise à jour en conséquence
64 lines
4 KiB
Smarty
64 lines
4 KiB
Smarty
{include file='top.tpl'}
|
|
<form action='{$LSview_search.action}' method='post' class='LSview_search'>
|
|
{foreach from=$LSview_search_hidden_fields item=value key=name}
|
|
<input type='hidden' name='{$name}' value='{$value}' />
|
|
{/foreach}
|
|
<input type='text' name='LSview_pattern' class='LSview_search' value="{$LSview_search_pattern}"/>
|
|
<input type='submit' value='{$LSview_search.submit}' name='LSview_search_submit' class='LSview_search' />
|
|
<p id='LSview_search_param'>
|
|
<label class='LSview_search'>{$LSview_search_approx_label} : <input type='checkbox' name='LSview_approx' class='LSview_search' {if $LSview_search_approx!=''}checked="true"{/if} /></label>
|
|
{if $LSobject_list_subDn}<label class='LSview_search'>{$LSview_search_recur_label} : <input type='checkbox' name='LSview_recur' class='LSview_search' {if $LSview_search_recur!=''}checked="true"{/if}/></label>{/if}
|
|
</p>
|
|
</form>
|
|
<h1>
|
|
{$pagetitle}
|
|
</h1>
|
|
|
|
{if $LSview_actions != ''}
|
|
<ul class='LSview-actions'>
|
|
{foreach from=$LSview_actions item=item}
|
|
{if is_array($item)}
|
|
<li class='LSview-actions'><a href='{$item.url}' class='LSview-actions'><img src='{$LS_IMAGES_DIR}/{$item.action}.png' alt='{php}tr('label');{/php}' title='{php}tr('label');{/php}' /> {php}tr('item','label');{/php}</a></li>
|
|
{/if}
|
|
{/foreach}
|
|
</ul>
|
|
{/if}
|
|
|
|
<table class='LSobject-list'>
|
|
<tr class='LSobject-list'>
|
|
<th class='LSobject-list'><a href='view.php?LSobject={$LSobject_list_objecttype}&orderby=displayName'>{if $LSobject_list_orderby == 'displayName'}<strong>{$LSobject_list_objectname}</strong><img src='{$LS_IMAGES_DIR}/{$LSobject_list_ordersense}.png' class='LSobject-list-ordersense' alt='{$LSobject_list_ordersense}'/>{else}{$LSobject_list_objectname}{/if}</a></th>
|
|
{if $LSobject_list_subDn}<th class='LSobject-list LSobject-list-subdn'><a href='view.php?LSobject={$LSobject_list_objecttype}&orderby=subDn'>{if $LSobject_list_orderby == 'subDn'}<strong>{$label_level}</strong><img src='{$LS_IMAGES_DIR}/{$LSobject_list_ordersense}.png' class='LSobject-list-ordersense' alt='{$LSobject_list_ordersense}'/>{else}{$label_level}{/if}</a></th>{/if}
|
|
<th class='LSobject-list'>{$_Actions}</th>
|
|
</tr>
|
|
{assign var='bis' value=false}
|
|
{foreach from=$LSobject_list item=object}
|
|
<tr class='LSobject-list{if $bis} LSobject-list-bis{assign var='bis' value=false}{else}{assign var='bis' value=true}{/if}'>
|
|
<td class='LSobject-list LSobject-list-names'><a href='view.php?LSobject={$LSobject_list_objecttype}&dn={$object.dn}' class='LSobject-list'>{$object.displayName}</a> </td>
|
|
{if $LSobject_list_subDn}<td class='LSobject-list'>{$object.subDn}</td>{/if}
|
|
<td class='LSobject-list LSobject-list-actions'>
|
|
{if $object.actions!=''}
|
|
{foreach from=$object.actions item=item}
|
|
<a href='{$item.url}' class='LSobject-list-actions'><img src='{$LS_IMAGES_DIR}/{$item.action}.png' alt='{$item.label}' title='{$item.label}'/></a>
|
|
{/foreach}
|
|
{/if}
|
|
</td>
|
|
</tr>
|
|
{foreachelse}
|
|
<tr class='LSobject-list'>
|
|
<td colspan='3' class='LSobject-list-without-result'>{$LSobject_list_without_result_label}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|
|
<span id='LSobject_list_nbresult'>{$LSobject_list_nbresult} {$pagetitle}</span>
|
|
{if $LSobject_list_nbpage}
|
|
<p class='LSobject-list-page'>
|
|
{section name=listpage loop=$LSobject_list_nbpage step=1}
|
|
{if $LSobject_list_currentpage == $smarty.section.listpage.index}
|
|
<strong class='LSobject-list-page'>{$LSobject_list_currentpage+1}</strong>
|
|
{else}
|
|
<a href='view.php?LSobject={$LSobject_list_objecttype}&page={$smarty.section.listpage.index}&{$LSobject_list_filter}' class='LSobject-list-page'>{$smarty.section.listpage.index+1}</a>
|
|
{/if}
|
|
{/section}
|
|
</p>
|
|
{/if}
|
|
{include file='bottom.tpl'}
|