/framework/core/db/templates/dbzone/view.tpl
http://zoop.googlecode.com/ · Smarty Template · 16 lines · 16 code · 0 blank · 0 comment · 0 complexity · 85b509cdb6374788893ae5851095afec MD5 · raw file
- <form method="post" name="main_form" action="{$virtualUrl}">
- <table>
- {foreach from=$object key=fieldName item=fieldValue}
- <tr>
- <td>{$fieldName}:</td>
- {if $object->getFieldOptions($fieldName)}
- {assign var=relationship value=$object->getFieldOptions($fieldName)}
- <td>{$relationship->getInfo()}</td>
- {else}
- <td>{$fieldValue}</td>
- {/if}
- </tr>
- {/foreach}
- </table>
- <input type="button" name="done" value="done" onclick="document.location = '{$zoneUrl}/list'">
- </form>