上传修改后的主题
This commit is contained in:
14
spiffy_theme_backend/models/bookmark.py
Normal file
14
spiffy_theme_backend/models/bookmark.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo Module Developed by Bizople Solutions Pvt. Ltd.
|
||||
# See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models, fields, api
|
||||
|
||||
class Bookmarklink(models.Model):
|
||||
_name = 'bookmark.link'
|
||||
_description = "Bookmark Link"
|
||||
|
||||
name = fields.Char("Name")
|
||||
title = fields.Char("Title")
|
||||
url = fields.Char("URL")
|
||||
user_id = fields.Many2one('res.users')
|
||||
Reference in New Issue
Block a user