From 0321f348ef237b402915f31695c51cf57e7364af Mon Sep 17 00:00:00 2001 From: Alex Sandro Date: Tue, 15 Mar 2016 20:49:54 -0300 Subject: [PATCH] Removing 'create_time' field because it does not support editing. --- demo_app/app/adminx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo_app/app/adminx.py b/demo_app/app/adminx.py index 716188884..cbae486e9 100644 --- a/demo_app/app/adminx.py +++ b/demo_app/app/adminx.py @@ -56,7 +56,7 @@ class IDCAdmin(object): reversion_enable = True actions = [BatchChangeAction, ] - batch_fields = ('contact', 'create_time') + batch_fields = ('contact', ) class HostAdmin(object):