<%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

部署操作 % if app.state in [8]: 应用正在“测试部署”,请稍后进行其他操作! % elif app.state in [9]: 应用正在“正式部署”,请稍后进行其他操作! % elif app.state in [10]: 应用正在“下架”,请稍后进行其他操作! % else: % if lastest_record: 最近操作:${lastest_record['username']} 于${lastest_record['datetime']} 进行${lastest_record['operate_type']}操作${lastest_record['result']} % endif % endif 开发框架代码 & 配置修改

% else:
您访问的应用信息不存在!
% endif