django-auditlog/auditlog/text.py
hoangquochung1110 4541be6f21 Add AUDITLOG_TRUNCATE_CHANGES_DISPLAY and AUDITLOG_TRUNCATE_LIMIT
To configure how many characters will be truncated or disable it
2024-11-01 11:18:01 +07:00

11 lines
241 B
Python

class Truncator:
def __init__(self, text) -> None:
self.text = text
def chars(self, length: int) -> str:
return f"{self.text[:length]}..."
def truncatechars(text, length):
return Truncator(text).chars(length)