From a1b7a7a5115d364a5ed85d6cafb1aaecd826dbc2 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Sat, 13 Apr 2013 00:01:39 +0100 Subject: [PATCH] Remove created/changed from the store form. --- app/stores/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/stores/forms.py b/app/stores/forms.py index 2b32cb7..f4de6cf 100644 --- a/app/stores/forms.py +++ b/app/stores/forms.py @@ -34,7 +34,7 @@ class StoreForm(BootstrapModelForm): class Meta: model = Store - exclude = ('slug', 'address', 'chain', 'editor') + exclude = ('slug', 'address', 'chain', 'editor', 'created', 'changed') classes = { 'name': 'input-xxlarge', 'long_description': 'input-xxlarge',