Coverage for apis_core/apis_entities/tables.py: 0%
8 statements
« prev ^ index » next coverage.py v7.6.4, created at 2024-11-22 07:51 +0000
« prev ^ index » next coverage.py v7.6.4, created at 2024-11-22 07:51 +0000
1from apis_core.generic.tables import ActionColumn, GenericTable
4class DuplicateColumn(ActionColumn):
5 """
6 A column showing a view button
7 """
9 template_name = "columns/duplicate.html"
10 permission = "create"
13class AbstractEntityTable(GenericTable):
14 noduplicate = DuplicateColumn()
16 class Meta(GenericTable.Meta):
17 sequence = ("...", "view", "edit", "delete", "noduplicate")