本文整理匯總了Python中packages.bin.bin.Page.body方法的典型用法代碼示例。如果您正苦於以下問題:Python Page.body方法的具體用法?Python Page.body怎麽用?Python Page.body使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類packages.bin.bin.Page
的用法示例。
在下文中一共展示了Page.body方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: asset
# 需要導入模塊: from packages.bin.bin import Page [as 別名]
# 或者: from packages.bin.bin.Page import body [as 別名]
def asset(request, pk=None, method=None):
s = Auth().isAuth(request)
if not s:
return Auth.routeLogin
page = Page(request)
page.title = 'Assets'
page.icon = 'glyphicons glyphicons-display'
page.form_name = 'geoIndex'
template = 'asset.html'
page.body = '''
<iframe name='geo-map' src="/geo/" seamless='true' frameborder=0 scrolling='o'
height='100%' style='margin:-20px 0 0 -23px;'>
</iframe>
<script>
$(window).resize(function() {
resizeGeo();
});
function resizeGeo(){
var map = $("[name='geo-map']");
var x = map.offset().left;
var y = map.offset().top;
var windowW = $(window).width();
var windowH = $(window).height();
var newWidth = windowW - x;
var newHeight = windowH - y;
map.width(newWidth);
map.height(newHeight);
}
resizeGeo();
</script>
'''
# render to browser
return render_to_response(template,
{'s': s, 'page': page},
context_instance=RequestContext(request)
)