You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
276 B
14 lines
276 B
from openerp.osv import fields, osv
|
|
|
|
|
|
class py3o_template(osv.Model):
|
|
_name = 'py3o.template'
|
|
|
|
_columns = {
|
|
'name': fields.char(
|
|
u"Name",
|
|
),
|
|
'py3o_template_data': fields.binary(
|
|
u"LibreOffice template",
|
|
),
|
|
}
|