git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
27 lines
802 B
Plaintext
27 lines
802 B
Plaintext
|
|
|
|
|
|
<table class="kt_collection">
|
|
<thead>
|
|
<tr>
|
|
<th>{i18n}Item{/i18n}</th>
|
|
<th>{i18n}Up{/i18n}</th>
|
|
<th>{i18n}Down{/i18n}</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody id="reorder-container">
|
|
{foreach from=$items key=iPosition item=aItem}
|
|
<tr class="reorder-item {cycle values=odd,even}">
|
|
<td>
|
|
<input type="hidden" class="reorder-field" name="position[]" value="{$iPosition}" />
|
|
<input type="hidden" name="id[]" value="{$aItem.id}" />
|
|
{$aItem.title|sanitize}
|
|
</td>
|
|
<td><a href="#" class="reorder-up ktAction ktMoveUp"> </a></td>
|
|
<td><a href="#" class="reorder-down ktAction ktMoveDown"> </a></td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|