當前位置: 首頁>>代碼示例>>Python>>正文


Python django_tables2.Table方法代碼示例

本文整理匯總了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) 
開發者ID:abelardopardo,項目名稱:ontask_b,代碼行數:25,代碼來源:plugin_run.py

示例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 
開發者ID:asifpy,項目名稱:django-crudbuilder,代碼行數:28,代碼來源:tables.py


注:本文中的django_tables2.Table方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。