editform.tpl:

- add {if} block for description column to make customization for
  special fields/cases easier


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1829 a1433add-5e2c-0410-b055-b7f2511e0802
pull/19/head
Christian Boltz 8 years ago
parent a9bb4b83ad
commit 530c489ec4

@ -55,7 +55,13 @@
{/if}
{/if}
</td>
<td>{$field.desc}</td>
<td>
{if $table == 'foo' && $key == 'bar'}
Special handling (td content) for {$table} / {$key}
{else}
{$field.desc}
{/if}
</td>
<td class="error_msg">{$fielderror.{$key}}</td>
</tr>
{/if}

Loading…
Cancel
Save