rhymix/modules/poll/tpl/config.html
2011-06-30 00:54:10 +00:00

37 lines
1.4 KiB
HTML

<!--%import("js/poll_admin.js")-->
<!--#include("./header.html")-->
<p class="xe_validator_error">{$XE_VALIDATOR_ERROR}</p>
<form ruleset="insertConfig" action="./" method="post" id="fo_poll">
<input type="hidden" name="act" value="procPollAdminInsertConfig" />
<table cellspacing="0" class="rowTable">
<tr>
<th scope="col" class="half_wide"><div>{$lang->skin}</div></th>
<td class="center">
<select name="skin" onchange="doDisplaySkinColorset(this);return false;">
<!--@foreach($skin_list as $key => $val)-->
<option value="{$key}" <!--@if($config->skin == $key)-->selected="selected"<!--@end-->>{$val->title} ({$key})</option>
<!--@end-->
</select>
</td>
</tr>
<tr>
<th scope="col" class="half_wide"><div>{$lang->colorset}</div></th>
<td class="center">
<select name="colorset" id="poll_colorset">
<!--@foreach($colorset_list as $key => $val)-->
<option value="{$val->name}" <!--@if($config->colorset == $val->name)-->selected="selected"<!--@end-->>{$val->title} ({$val->name})</option>
<!--@end-->
</select>
</td>
</tr>
<tr class="row2">
<th scope="row" colspan="2" class="button">
<span class="button black strong"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
</th>
</tr>
</tbody>
</table>
</form>