mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1892 201d5d3c-b55e-5fd7-737f-ddc643e51545
60 lines
1.8 KiB
HTML
60 lines
1.8 KiB
HTML
<!--%import("./filter/save_time_zone.xml")-->
|
|
|
|
<h3>{$lang->welcome_to_zeroboard_xe}</h3>
|
|
|
|
<form action="./" method="get" onsubmit="return procFilter(this, save_time_zone);">
|
|
<table cellspacing="0" class="tableType4">
|
|
<col width="100" />
|
|
<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">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>
|
|
<span class="button"><input type="submit" value="{$lang->cmd_save}" /></span>
|
|
</td>
|
|
</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>
|