1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00

Add blank option to eml field, fixes admin

This commit is contained in:
Chris Leonello 2017-09-26 14:38:48 -04:00
parent 9f8d653ada
commit 9809b271b2

View file

@ -515,6 +515,7 @@ class Message(models.Model):
eml = models.FileField(
_(u'Raw message contents'),
null=True,
blank=True,
upload_to="messages",
help_text=_(u'Original full content of message')
)