Coverage for apis_core/generic/tables.py: 80%
49 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
1import django_tables2 as tables
3from apis_core.generic.helpers import permission_fullname
6class CustomTemplateColumn(tables.TemplateColumn):
7 """
8 A custom template column - the `tables.TemplateColumn` class does not allow
9 to set attributes via class variables. Therefor we use this
10 CustomTemplateColumn to set some arguments based on class attributes and
11 override the attributes in child classes.
12 """
14 template_name = None
15 orderable = None
16 exclude_from_export = False
17 verbose_name = None
19 def __init__(self, *args, **kwargs):
20 super().__init__(
21 template_name=self.template_name,
22 orderable=self.orderable,
23 exclude_from_export=self.exclude_from_export,
24 verbose_name=self.verbose_name,
25 *args,
26 **kwargs,
27 )
30class ActionColumn(CustomTemplateColumn):
31 """
32 A custom template column with some additional attributes
33 for actions.
34 """
36 orderable = False
37 exclude_from_export = True
38 verbose_name = ""
39 attrs = {"td": {"style": "width:1%;"}}
41 def render(self, record, table, *args, **kwargs):
42 if permission := getattr(self, "permission", False):
43 if not table.request.user.has_perm(permission_fullname(permission, record)):
44 return ""
45 return super().render(record, table, *args, **kwargs)
48class DeleteColumn(ActionColumn):
49 """
50 A column showing a delete button
51 """
53 template_name = "columns/delete.html"
54 permission = "delete"
57class EditColumn(ActionColumn):
58 """
59 A column showing an edit button
60 """
62 template_name = "columns/edit.html"
63 permission = "change"
66class ViewColumn(ActionColumn):
67 """
68 A column showing a view button
69 """
71 template_name = "columns/view.html"
72 permission = "view"
75class DescriptionColumn(CustomTemplateColumn):
76 """
77 A column showing a model description
78 """
80 template_name = "columns/description.html"
81 orderable = False
84class GenericTable(tables.Table):
85 """
86 A generic table that contains an edit button column, a delete button column
87 and a description column
88 """
90 edit = EditColumn()
91 desc = DescriptionColumn()
92 delete = DeleteColumn()
93 view = ViewColumn()
95 class Meta:
96 fields = ["id", "desc"]
97 sequence = ("...", "view", "edit", "delete")
100class MoreLessColumn(tables.TemplateColumn):
101 """
102 Useful for displaying long fields.
103 A preview is shown initially with a "Show more" link
104 which is replaced with a "Show less" link when expanded.
105 """
107 template_name = "columns/more-less.html"
109 def __init__(self, preview, fulltext, *args, **kwargs):
110 self.preview = preview
111 self.fulltext = fulltext
112 super().__init__(template_name=self.template_name, *args, **kwargs)
114 def render(self, record, **kwargs):
115 self.extra_context["preview"] = self.preview(record)
116 self.extra_context["fulltext"] = self.fulltext(record)
117 return super().render(record, **kwargs)