[MODULE] +type field in bikecoop themes
[burette/eturecup.git] / eturecup.py
index 3648b47..b0cc60f 100644 (file)
@@ -37,4 +37,12 @@ class Partner(orm.Model):
     }
 
 
+class Theme(orm.Model):
+    _inherit = 'bikecoop.partner.theme'
+
+    _columns = {
+        'type': fields.selection([('studies','Studies')], 'Type', help='An extra field to categorize themes.'),
+    }
+
+
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: