conditional_rename_behaviours.smarty
992 Bytes
<h2>{i18n}Rename Behaviours{/i18n}</h2>
<p class="descriptiveText">{i18n}If you have converted a simple conditional fieldset to a complex one,
it may be useful to rename some of the system-generated names. You can do that here.{/i18n}</p>
<form method="POST" action="{$smarty.server.PHP_SELF}">
<table class="kt_collection narrow" cellspacing="0" cellpadding="5">
<thead>
<tr>
<th>{i18n}Current Name{/i18n}</th>
<th>{i18n}New Name{/i18n}</th>
</tr>
</thead>
<tbody>
{foreach from=$behaviours item=oBehaviour}
<tr>
<td><strong>{$oBehaviour->getName()}</strong></td>
<td><input type="text" name="renamed[{$oBehaviour->getId()}]" value="{$oBehaviour->getName()}" size="40" /></td>
</tr>
{/foreach}
</tbody>
</table>
<div class="form_actions">
{foreach from=$args item=v key=k}
<input type="hidden" name="{$k}" value="{$v}" />
{/foreach}
<input type="submit" value="{i18n}Rename Behaviours{/i18n}" />
</div>
</form>