本文整理匯總了Python中webhelpers2.html.HTML.tr方法的典型用法代碼示例。如果您正苦於以下問題:Python HTML.tr方法的具體用法?Python HTML.tr怎麽用?Python HTML.tr使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類webhelpers2.html.HTML
的用法示例。
在下文中一共展示了HTML.tr方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: table_tr_output
# 需要導入模塊: from webhelpers2.html import HTML [as 別名]
# 或者: from webhelpers2.html.HTML import tr [as 別名]
def table_tr_output(self, cells, row_hah):
# do some formatting so that the source code is properly indented
tds_str = u'\n'.join(cells)
tds_str = reindent(tds_str, 12)
tds_str = u'\n{0}\n '.format(tds_str)
return _HTML.tr(literal(tds_str), **row_hah)
示例2: filtering_table_row
# 需要導入模塊: from webhelpers2.html import HTML [as 別名]
# 或者: from webhelpers2.html.HTML import tr [as 別名]
def filtering_table_row(self, col):
extra = getattr(col.filter, 'html_extra', {})
return _HTML.tr(
_HTML.th(self.filtering_col_label(col), class_='filter-label')
+ _HTML.td(self.filtering_col_op_select(col), class_='operator')
+ _HTML.td(
_HTML.div(self.filtering_col_inputs1(col), class_='inputs1')
+ _HTML.div(self.filtering_col_inputs2(col), class_='inputs2')
),
# Added _filter to address CSS collision with Bootstrap
# Ref: https://github.com/level12/webgrid/issues/28
class_=col.key + '_filter',
**extra
)