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
383 B
12 lines
383 B
# -*- coding: utf-8 -*-
|
|
# © 2016 Diagram Software S.L.
|
|
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
|
from openerp import fields, models
|
|
|
|
|
|
class WebsiteConfigSettings(models.TransientModel):
|
|
|
|
_inherit = 'website.config.settings'
|
|
|
|
social_pinterest = fields.Char('Pinterest Account',
|
|
related='website_id.social_pinterest')
|