Fix #1751 연동 불가능한 관리그룹은 노출시키지 않음

추가로 기본 그룹 앞에 붙는 "레벨"을 삭제합니다.
This commit is contained in:
YJSoft 2021-07-19 18:38:28 +09:00
parent d3ee5083f0
commit 2076f92625

View file

@ -162,11 +162,13 @@
</select>
</div>
</div>
<div class="x_control-group" loop="$group_list => $key,$val">
<div class="x_control-group" loop="$group_list => $key,$val" cond="$val->is_admin != 'Y'">
<label class="x_control-label" for="point_group_{$key}">{$val->title}</label>
<div class="x_controls">
<input cond="$val->is_default != 'Y'" type="number" min="0" max="1000" value="{$config->point_group[$key]}" name="point_group_{$key}" id="point_group_{$key}" style="width:50px" />
<!--@if($val->is_default != 'Y')-->
<input type="number" min="0" max="1000" value="{$config->point_group[$key]}" name="point_group_{$key}" id="point_group_{$key}" style="width:50px" />
&nbsp;{$lang->level}
<!--@end-->
<span cond="$val->is_default == 'Y'" style="display:inline-block;padding-top:3px">{$lang->default_group}</span>
</div>
</div>