mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-26 06:39:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@2 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
2569c554ce
commit
c040d4d713
317 changed files with 14496 additions and 0 deletions
45
modules/board/admin/grant_list.html
Normal file
45
modules/board/admin/grant_list.html
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
<!--#include("./header.html")-->
|
||||
<!--%import("filter/filter.insert_grant.xml")-->
|
||||
|
||||
<form action="./admin.php" method="post" onsubmit="return procFormFilter(this, insert_grant, procInsertGrant)">
|
||||
<input type="hidden" name="sid" value="{$sid}" />
|
||||
<input type="hidden" name="act" value="procInsertGrant" />
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
<input type="hidden" name="module_srl" value="{$module_srl}" />
|
||||
|
||||
<div>
|
||||
{$lang->about_grant}
|
||||
</div>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th>{$lang->grant}</th>
|
||||
<th>{$lang->target}</th>
|
||||
</tr>
|
||||
<!--@foreach($grant_list as $key => $val)-->
|
||||
<tr>
|
||||
<td>{$lang->grant_title[$val]}</td>
|
||||
<td>
|
||||
<div>
|
||||
<!--@foreach($group_list as $k => $v)-->
|
||||
<span>
|
||||
<input type="checkbox" name="{$val}" value="{$v->group_srl}" id="grant_{$val}_{$v->group_srl}" <!--@if(is_array($module_info->grant)&&in_array($v->group_srl,$module_info->grant[$val]))-->checked="true"<!--@end-->/>
|
||||
<label for="grant_{$val}_{$v->group_srl}">{$v->title}</label>
|
||||
</span>
|
||||
<!--@end-->
|
||||
</div>
|
||||
<div>
|
||||
<input type="button" value="{$lang->cmd_select_all}" onclick="procSelectAll(this, '{$val}')"/>
|
||||
<input type="button" value="{$lang->cmd_unselect_all}" onclick="procUnSelectAll(this, '{$val}')"/>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<input type="submit" value="{$lang->cmd_save}" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
Loading…
Add table
Add a link
Reference in a new issue