-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtables.py
40 lines (28 loc) · 1.3 KB
/
tables.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import django_tables2 as tables
class FloatColumn(tables.Column):
def __init__(self, float_digits=None, *args, **kwargs):
self.float_digits = float_digits
super().__init__(*args, **kwargs)
def render(self, value):
if isinstance(value, float) and self.float_digits is not None:
value = round(value, self.float_digits)
return value
class TruncatedTextColumnMixin:
"""A Column to limit to x characters and add an ellipsis"""
def __init__(self, truncated_at=30, *args, **kwargs):
self.truncated_at = truncated_at
super().__init__(*args, **kwargs)
def truncate_text(self, text):
text = str(text)
if len(text) > self.truncated_at:
text = text[:(self.truncated_at - 3)] + '...'
return text
class TruncatedTextColumn(TruncatedTextColumnMixin, tables.Column):
def render(self, value):
return super().render(self.truncate_text(value))
class TruncatedEmailColumn(TruncatedTextColumnMixin, tables.EmailColumn):
def text_value(self, record, value):
return super().text_value(record, self.truncate_text(value))
class TruncatedLinkColumn(TruncatedTextColumnMixin, tables.LinkColumn):
def text_value(self, record, value):
return super().text_value(record, self.truncate_text(value))