|
@@ -49,9 +49,8 @@ class EmFieldGroup(EmComponent):
|
49
|
49
|
def delete(self):
|
50
|
50
|
# all the EmField objects contained in this fieldgroup should be deleted first
|
51
|
51
|
fieldgroup_fields = self.fields()
|
52
|
|
- for fieldgroup_field in fieldgroup_fields:
|
53
|
|
- fieldgroup_field.delete()
|
54
|
|
-
|
|
52
|
+ if len(fieldgroup_fields)>0:
|
|
53
|
+ raise NotEmptyError("This Fieldgroup still contains fields. It can't be deleted then")
|
55
|
54
|
# then we delete this fieldgroup
|
56
|
55
|
# TODO Process de suppression du fieldgroup dans le modèle éditorial
|
57
|
56
|
|
|
@@ -71,3 +70,6 @@ class EmFieldGroup(EmComponent):
|
71
|
70
|
# rows = res.fetchall()
|
72
|
71
|
# conn.close()
|
73
|
72
|
# return [EditorialModel.fields.EmField(row['uid']) for row in rows]
|
|
73
|
+
|
|
74
|
+class NotEmptyError(Exception):
|
|
75
|
+ pass
|