%!
def inherit( context ):
if not context.get('base_tpl'):
return '/base_app.html'
else:
return context.get('base_tpl')
%>
<%inherit file="${inherit(context)}"/>
<%block name="right_content">
% if esb_sys_list:
<%
if BK_APIGW_DOC_URL:
api_doc_url=BK_APIGW_DOC_URL
else:
api_doc_url=SITE_URL + "esb/api_docs/system/"
%>
${_(u'API文档')}
% else:
${_(u'没有组件资源')}
% endif
%block>