mirror of
https://github.com/NaN-tic/trytond-electronic_mail_filter.git
synced 2023-12-14 02:42:58 +01:00
16 lines
379 B
Python
16 lines
379 B
Python
|
# The COPYRIGHT file at the top level of this repository contains the full
|
||
|
# copyright notices and license terms.
|
||
|
from trytond.model import fields
|
||
|
from trytond.pool import PoolMeta
|
||
|
|
||
|
|
||
|
__all__ = ['Template']
|
||
|
__metaclass__ = PoolMeta
|
||
|
|
||
|
|
||
|
class Template:
|
||
|
__name__ = 'electronic.mail.template'
|
||
|
|
||
|
filters = fields.One2Many('electronic.mail.filter', 'template',
|
||
|
'Filters')
|