<%inherit file="base.html"/> <%namespace name="main_ui" file="main_ui.html"/> <%namespace name="sidebar_ui" file="sidebar_ui.html"/> <%def name="head()"> <%def name="main()">
资费列表
% for product in products:
${product.product_name}
资费类型 ${{0:u'预付费包月',1:u"预付费时长",2:u"买断包月"}[product.product_policy]} 资费价格 ${fen2yuan(product.fee_price)} 同时在线数 ${product.concur_number}
VLAN绑定 ${product.bind_vlan and u'是' or u'否'} MAC地址绑定 ${product.bind_mac and u'是' or u'否'} 开放认证时段 ${product.fee_period}
上行速率 ${product.input_max_limit/1024} kbps 下行速率 ${product.output_max_limit/1024} kbps

% endfor
<%def name="sidebar()"> ${sidebar_ui.login_box()} ${sidebar_ui.user_box()}