|
|
|
|
49
|
|
49
|
|
50
|
## Get the list of associated fields
|
50
|
## Get the list of associated fields
|
51
|
# @return A list of EmField instance
|
51
|
# @return A list of EmField instance
|
52
|
- # @todo Implement this method
|
|
|
53
|
def fields(self):
|
52
|
def fields(self):
|
54
|
field_table = sqlutils.getTable(EditorialModel.fields.EmField)
|
53
|
field_table = sqlutils.getTable(EditorialModel.fields.EmField)
|
55
|
req = field_table.select(field_table.c.uid).where(field_table.c.fieldgroup_id == self.uid)
|
54
|
req = field_table.select(field_table.c.uid).where(field_table.c.fieldgroup_id == self.uid)
|