本文整理匯總了Python中django_tables2.Table方法的典型用法代碼示例。如果您正苦於以下問題:Python django_tables2.Table方法的具體用法?Python django_tables2.Table怎麽用?Python django_tables2.Table使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類django_tables2
的用法示例。
在下文中一共展示了django_tables2.Table方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: create_model_table
# 需要導入模塊: import django_tables2 [as 別名]
# 或者: from django_tables2 import Table [as 別名]
def create_model_table(
request: http.HttpRequest,
workflow: models.Workflow,
is_model: bool,
):
"""Create the table of plugins that are models.
:param request: Received request
:param workflow: Workflow being processed
:param is_model: Is the object a model?
:return: Table with available model plugins
"""
# Traverse the plugin folder and refresh the db content.
refresh_plugin_data(request)
return PluginAvailableTable(
models.Plugin.objects.filter(
is_model=is_model,
is_verified=True,
is_enabled=True),
orderable=False,
user=request.user,
workflow=workflow)
示例2: generate_table
# 需要導入模塊: import django_tables2 [as 別名]
# 或者: from django_tables2 import Table [as 別名]
def generate_table(self):
model_class = self.get_model_class()
detail_url_name = '{}-{}-detail'.format(
self.app, custom_postfix_url(self.crud(), self.model)
)
main_attrs = dict(
pk=tables.LinkColumn(detail_url_name, args=[A('pk')])
)
meta_attrs = dict(
model=model_class,
fields=('pk',) + self.tables2_fields if self.tables2_fields else ('pk',),
attrs={
"class": self.tables2_css_class,
"empty_text": "No {} exist".format(plural(self.model))
})
main_attrs['Meta'] = type('Meta', (), meta_attrs)
klass = type(
model_class_form(self.model + 'Table'),
(tables.Table,),
main_attrs
)
return klass