rhymix/modules/admin/tpl/index.html

75 lines
2.3 KiB
HTML

<!--%import("./filter/update_env_config.xml")-->
<!--%import("../../install/lang")-->
<h3>{$lang->welcome_to_zeroboard_xe}</h3>
<form action="./" method="get" onsubmit="return procFilter(this, update_env_config);">
<table cellspacing="0" class="tableType4">
<col width="250" />
<col />
<tr>
<th scope="row">Lang</th>
<td>
<select name="lang_type" onchange="doChangeLangType(this)">
<option value="{$lang_type}">{$lang_type}</option>
<!--@foreach($lang_supported as $val)-->
<!--@if($val != $lang_type)-->
<option value="{$val}">{$val}</option>
<!--@end-->
<!--@end-->
</select>
</td>
</tr>
<tr>
<th scope="row">{$lang->use_rewrite}</th>
<td>
<input type="checkbox" name="use_rewrite" value="Y" <!--@if(function_exists('apache_get_modules')&&in_array('mod_rewrite',apache_get_modules())&&$use_rewrite=='Y')-->checked="checked"<!--@end--> />
<p>{$lang->about_rewrite}</p>
</td>
</tr>
<tr>
<th scope="row">{$lang->time_zone}</th>
<td>
<select name="time_zone" class="time_zone">
<!--@foreach($time_zone_list as $key => $val)-->
<option value="{$key}" <!--@if($time_zone==$key)-->selected="selected"<!--@end-->>{$val}</option>
<!--@end-->
</select>
<p>{$lang->about_time_zone}</p>
</td>
</tr>
<tr>
<th scope="row" colspan="2">
<div class="tRight">
<span class="button"><input type="submit" value="{$lang->cmd_save}" /></span>
</div>
</th>
</tr>
</table>
</form>
<!-- 사용자 링크 -->
<table cellspacing="0" class="tableType3 gap1">
<col width="250" />
<col />
<tr>
<th colspan="2" class="bold">{$lang->zeroboard_xe_user_links}</th>
</tr>
<!--@foreach($lang->xe_user_links as $key => $val)-->
<tr>
<th scope="col">{$key}</th>
<td class="left blue"><a href="#" onclick="winopen('{$val}'); return false;">{$val}</a></td>
</tr>
<!--@end-->
<!-- 개발자 링크 -->
<tr>
<th colspan="2" class="bold">{$lang->zeroboard_xe_developer_links}</th>
</tr>
<!--@foreach($lang->xe_developer_links as $key => $val)-->
<tr>
<th scope="col">{$key}</th>
<td class="left blue"><a href="#" onclick="winopen('{$val}'); return false;">{$val}</a></td>
</tr>
<!--@end-->
</table>