From bda87bb4b52b93aed709ce9160d1edfd5665f17d Mon Sep 17 00:00:00 2001 From: Horilla Date: Mon, 21 Apr 2025 12:37:09 +0530 Subject: [PATCH] [UPDT] BASE: Title max length --- base/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/models.py b/base/models.py index 4b74f4b52..0b50b373f 100644 --- a/base/models.py +++ b/base/models.py @@ -1162,7 +1162,7 @@ class Tags(HorillaModel): class HorillaMailTemplate(HorillaModel): - title = models.CharField(max_length=25, unique=True) + title = models.CharField(max_length=100, unique=True) body = models.TextField() company_id = models.ForeignKey( Company,