From ddcce045ffa196642a9c4a6376669511a8b87d79 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Wed, 15 Jan 2025 15:01:22 +0100 Subject: [PATCH] personal: Increase length of title --- mpicms/personal/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpicms/personal/models.py b/mpicms/personal/models.py index 9eb5967..27d77ca 100644 --- a/mpicms/personal/models.py +++ b/mpicms/personal/models.py @@ -117,7 +117,7 @@ class Contact(index.Indexed, ClusterableModel): to the database. https://github.com/wagtail/django-modelcluster """ - title = models.CharField(_("title"), max_length=5, blank=True) + title = models.CharField(_("title"), max_length=15, blank=True) first_name = models.CharField(_("first name"), max_length=50, blank=True) last_name = models.CharField(_("last name"), max_length=50, blank=True) academic_suffix = models.CharField(_("academic_suffix"), max_length=50, blank=True)