From 0ebd683e0217f0437c0c904634b2cc5052aa3633 Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Mon, 20 Feb 2017 19:34:12 +0100 Subject: [PATCH] permit blank comments to make the admin less annoying --- src/shop/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shop/models.py b/src/shop/models.py index c7149f30..3caa6a98 100644 --- a/src/shop/models.py +++ b/src/shop/models.py @@ -109,6 +109,7 @@ class Order(CreatedUpdatedModel): verbose_name=_('Customer comment'), help_text=_('If you have any comments about the order please enter them here.'), default='', + blank=True, )