Initial commit

This commit is contained in:
2023-01-20 15:25:20 +01:00
commit e308314fbb
52 changed files with 620 additions and 0 deletions

15
py_class.sublime-snippet Normal file
View File

@@ -0,0 +1,15 @@
<snippet>
<content><![CDATA[
from trytond.model import ModelSQL, ModelView, fields
class ${1:ClassName}(ModelSQL, ModelView):
"""${2:Model Title}"""
__name__ = '${3:model.name}'
${4}
]]></content>
<tabTrigger>tryton_class</tabTrigger>
<scope>source.python</scope>
<description>Tryton: New model</description>
</snippet>