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.
12 lines
335 B
12 lines
335 B
# -*- coding: utf-8 -*-
|
|
# (c) 2015 Antiun Ingeniería S.L. - Sergio Teruel
|
|
# (c) 2015 Antiun Ingeniería S.L. - Carlos Dauden
|
|
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.
|
|
|
|
from openerp import models, fields
|
|
|
|
|
|
class Website(models.Model):
|
|
_inherit = 'website'
|
|
|
|
mail_button_color = fields.Char(default='#00B518')
|