Revision 177, 337 bytes
(checked in by exi, 14 years ago)
|
Removed unneeded admin_rental.php and maintenance.php.
Converted the first admin page to a new format, see class.options.php for details.
|
Line | |
---|
1 | {strip} |
---|
2 | <tr><td width="120"><b>{$opt.descr}:</b></td><td> |
---|
3 | <select id="option[{$opt.name}]" name="option[{$opt.name}]"> |
---|
4 | {foreach from=$options key=key item=i} |
---|
5 | <option value="{$i.value}"{if $i.state} selected="selected"{/if}>{$i.descr}</option> |
---|
6 | {/foreach} |
---|
7 | </select> |
---|
8 | {if $opt.hint} |
---|
9 | ({$opt.hint}) |
---|
10 | {/if} |
---|
11 | </td></tr> |
---|
12 | {/strip} |
---|