本文整理汇总了Python中MaKaC.webinterface.wcomponents.WTemplated.getHTML方法的典型用法代码示例。如果您正苦于以下问题:Python WTemplated.getHTML方法的具体用法?Python WTemplated.getHTML怎么用?Python WTemplated.getHTML使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MaKaC.webinterface.wcomponents.WTemplated
的用法示例。
在下文中一共展示了WTemplated.getHTML方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: blockingRequestProcessed
# 需要导入模块: from MaKaC.webinterface.wcomponents import WTemplated [as 别名]
# 或者: from MaKaC.webinterface.wcomponents.WTemplated import getHTML [as 别名]
def blockingRequestProcessed(roomBlocking):
"""
Notifies (e-mails) blocking creator about approval/rejection of his
blocking request for a room
"""
emails = []
# ---- Email creator and contact ----
to = roomBlocking.block.createdByUser.getEmail()
if roomBlocking.active == True:
verb = 'ACCEPTED'
else:
verb = 'REJECTED'
subject = "Room blocking %s" % verb
wc = WTemplated('RoomBookingEmail_2BlockingCreatorRequestProcessed')
text = wc.getHTML({
'block': roomBlocking.block,
'roomBlocking': roomBlocking,
'verb': verb
})
fromAddr = Config.getInstance().getSupportEmail()
mailData = {
"fromAddr": fromAddr,
"toList": [to],
"subject": subject,
"body": text
}
emails.append(mailData)
return emails
示例2: requestConfirmation
# 需要导入模块: from MaKaC.webinterface.wcomponents import WTemplated [as 别名]
# 或者: from MaKaC.webinterface.wcomponents.WTemplated import getHTML [as 别名]
def requestConfirmation(owner, block, roomBlockings):
"""
Notifies (e-mails) room owner about blockings he has to approve.
Expects only blockings for rooms owned by the specified owner
"""
emails = []
# ---- Email creator and contact ----
to = owner.getEmail()
subject = "Confirm room blockings"
wc = WTemplated('RoomBookingEmail_2ResponsibleConfirmBlocking')
text = wc.getHTML({
'owner': owner,
'block': block,
'roomBlockings': roomBlockings
})
fromAddr = Config.getInstance().getNoReplyEmail()
mailData = {
"fromAddr": fromAddr,
"toList": [to],
"subject": subject,
"body": text
}
emails.append(mailData)
return emails
示例3: _getBody
# 需要导入模块: from MaKaC.webinterface.wcomponents import WTemplated [as 别名]
# 或者: from MaKaC.webinterface.wcomponents.WTemplated import getHTML [as 别名]
def _getBody( self, params ):
wc = WTemplated('LaTeXError')
conf = self._error.params['conf']
return wc.getHTML({
'report_id': self._error.report_id,
'is_manager': conf.canModify(self._getAW()),
'log': open(self._error.log_file, 'r').read(),
'source_code': open(self._error.source_file, 'r').read()
})