%inherit file="base.html"/>
<%def name="head()">
%def>
<%def name="body()">
操作员列表
% if get_cookie('opr_type') == 0:
增加操作员
% endif
操作员名称 |
操作员姓名 |
操作员类型 |
操作员状态 |
操作 |
% for opr in opr_list:
${opr.operator_name} |
${opr.operator_desc} |
${oprtype[opr.operator_type]} |
${oprstatus[opr.operator_status]} |
% if opr.operator_type > 0 and get_cookie('opr_type') == 0 :
修改
删除
% endif
|
% endfor
%def>