Skip to content

Commit

Permalink
Contact: Increase width of Contact.room
Browse files Browse the repository at this point in the history
Increase the width of the room field in the Contact model. This was
requested by user.
  • Loading branch information
donald committed Aug 13, 2020
1 parent 13bbfea commit 3273456
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 @@ -97,7 +97,7 @@ class Contact(index.Indexed, ClusterableModel):
last_name = models.CharField(_("last name"), 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=25, blank=True)
room = models.CharField(_("room"), max_length=50, blank=True)
is_active = models.BooleanField(_("is active"), default=True)
priority = models.PositiveSmallIntegerField(
_("priority"), blank=True, default=0, validators=[MaxValueValidator(999)],
Expand Down

0 comments on commit 3273456

Please sign in to comment.