Skip to content

Instantly share code, notes, and snippets.

@bitodoo
Created May 24, 2019 04:48
Show Gist options
  • Save bitodoo/d802c00038cda7d584917474767cb06b to your computer and use it in GitHub Desktop.
Save bitodoo/d802c00038cda7d584917474767cb06b to your computer and use it in GitHub Desktop.
from odoo.tools import misc
@api.model
def _get_default_faq(self):
with misc.file_open('website_forum/data/forum_default_faq.html', 'r') as f:
return f.read()
faq = fields.Html('Guidelines', default=_get_default_faq, translate=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment