From 4457c65ec2360baa848f0131278c6f5019a45000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 5 Jun 2014 13:22:32 +0200 Subject: [PATCH] move immediate decision from BoardMinutes to BoardDecision (#4754) --- src/pfwbged/basecontent/types.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pfwbged/basecontent/types.py b/src/pfwbged/basecontent/types.py index 7fafd8a..19b686f 100644 --- a/src/pfwbged/basecontent/types.py +++ b/src/pfwbged/basecontent/types.py @@ -67,6 +67,10 @@ class IBoardDecision(IPfwbBaseDocument): title=_(u'Meeting Date'), required=False) + immediate = schema.Bool( + title=_(u'Immediate Decision'), + default=False) + class BoardDecision(PfwbBaseDocument): implements(IBoardDecision) @@ -166,10 +170,6 @@ class IBoardMinutes(IDmsDocument): title=_(u'Meeting Date'), required=False) - immediate = schema.Bool( - title=_(u'Immediate Decision'), - default=False) - class BoardMinutes(DmsDocument): implements(IBoardMinutes)