Skip to content

Commit

Permalink
personal: Increase length of title
Browse files Browse the repository at this point in the history
  • Loading branch information
donald committed Jan 15, 2025
1 parent ede5d4b commit ddcce04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpicms/personal/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ddcce04

Please sign in to comment.