%inherit file="/base_app.html"/> <%block name="right_content"> % if app:
测试环境 % if app.is_already_test and app.state not in [1]: 正在运行 % else: % if not app.is_already_test and app.state not in [1]: 已下架 % else: 未部署 % endif % endif % if app.is_already_test and app.state not in [1]: 马上访问 % else: 马上访问 % endif | 正式环境 % if app.is_already_online and app.state not in [0, 1]: 正在运行 % else: % if not app.is_already_online and app.state in [0]: 已下架 % else: 未部署 % endif % endif % if app.is_already_online and app.state not in [0, 1]: 马上访问 % else: 马上访问 % endif |