Skip to content

Commit

Permalink
personal: Add academic_suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
donald committed Jan 15, 2025
1 parent 78c62d0 commit efd06cf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mpicms/personal/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ class Contact(index.Indexed, ClusterableModel):
title = models.CharField(_("title"), max_length=5, 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)
email = models.EmailField(_("email"), blank=True)
phone = models.CharField(_("phone number"), blank=True, max_length=50)
room = models.CharField(_("room"), max_length=50, blank=True)
Expand All @@ -110,6 +111,7 @@ class Contact(index.Indexed, ClusterableModel):
FieldPanel('title', classname=''),
FieldPanel('first_name'),
FieldPanel('last_name'),
FieldPanel('academic_suffix'),
], heading='Name'),
InlinePanel(
'positions', label="Positions",
Expand Down

0 comments on commit efd06cf

Please sign in to comment.