<?xml version="1.0" encoding="UTF-8" standalone="no"?><templates><template autoinsert="true" context="xml_all" deleted="false" description="Record Action Window" enabled="true" name="action_record_window">&lt;record model="ir.action.act_window" id="act_${model}_${name}_${identifier}"&gt;
            &lt;field name="name"&gt;${Model_Name}&lt;/field&gt;
            &lt;field name="res_model"&gt;${model}.${name}.${identifier}&lt;/field&gt;
            &lt;field name="domain"&gt;[("${field_name}", "in", Eval('${values}'))]&lt;/field&gt;
            &lt;field name="search_value"&gt;${}&lt;/field&gt;
        &lt;/record&gt;
        &lt;record model="ir.action.act_window.view" id="act_${model}_${name}_${identifier}_tree"&gt;
            &lt;field name="sequence" eval="10"/&gt;
            &lt;field name="view" ref="${model}_${name}_${identifier}_tree"/&gt;
            &lt;field name="act_window" ref="act_${model}_${name}_${identifier}"/&gt;
        &lt;/record&gt;
        &lt;record model="ir.action.act_window.view" id="act_${model}_${name}_${identifier}_form"&gt;
            &lt;field name="sequence" eval="20"/&gt;
            &lt;field name="view" ref="${model}_${name}_${identifier}_form"/&gt;
            &lt;field name="act_window" ref="act_${model}_${name}_${identifier}"/&gt;
        &lt;/record&gt;</template><template autoinsert="true" context="xml_all" deleted="false" description="Form Field" enabled="true" name="form_field">&lt;label name="${field}"/&gt;
    &lt;field name="${field}"/&gt;
    ${cursor}</template><template autoinsert="true" context="xml_all" deleted="false" description="Inherited Form View" enabled="true" name="form_inherited_view">&lt;?xml version="1.0"?&gt;
&lt;!-- This file is part of ${module_name} module for Tryton.
The COPYRIGHT file at the top level of this repository contains the full
copyright notices and license terms. --&gt;
&lt;data&gt;
    &lt;xpath expr="/${form}/${notebook}/${page}/${field}[@name=&amp;quot;${field_name}&amp;quot;]"
            position="${after}"&gt;
        &lt;label name="${field}"/&gt;
        &lt;field name="${field}"/&gt;
        ${cursor}
    &lt;/xpath&gt;
&lt;/data&gt;</template><template autoinsert="true" context="xml_all" deleted="false" description="Form View" enabled="true" name="form_view">&lt;?xml version="1.0"?&gt;
&lt;!-- This file is part of ${module_name} module for Tryton.
The COPYRIGHT file at the top level of this repository contains the full
copyright notices and license terms. --&gt;
&lt;form string="${Label}" col="4"&gt;
    &lt;label name="${name}"/&gt;
    &lt;field name="${name}"/&gt;
    ${cursor}
&lt;/form&gt;</template><template autoinsert="true" context="xml_all" deleted="false" description="Record Menu" enabled="true" name="menu_record">&lt;menuitem
            parent="menu_general_account_configuration"
            action="act_account_type_template_tree"
            id="menu_account_type_template_tree"/&gt;
</template><template autoinsert="true" context="xml_all" deleted="false" description="Record Model 2" enabled="true" name="record_model_2">&lt;!-- ${model}.${name} --&gt;
        &lt;record model="ir.ui.view" id="${model}_${name}_tree_view"&gt;
            &lt;field name="model"&gt;${model}.${name}&lt;/field&gt;
            &lt;field name="type"&gt;tree&lt;/field&gt;
            &lt;field name="priority" eval="30"/&gt;
            &lt;field name="name"&gt;${model}_${name}_tree_view&lt;/field&gt;
        &lt;/record&gt;
        &lt;record model="ir.ui.view" id="${model}_${name}_form_view"&gt;
            &lt;field name="model"&gt;${model}.${name}&lt;/field&gt;
            &lt;field name="type"&gt;form&lt;/field&gt;
            &lt;field name="priority" eval="30"/&gt;
            &lt;field name="name"&gt;${model}_${name}_form_view&lt;/field&gt;
        &lt;/record&gt;
        &lt;record model="ir.action.act_window" id="act_${model}_${name}"&gt;
            &lt;field name="name"&gt;${Model_Name}&lt;/field&gt;
            &lt;field name="res_model"&gt;${model}.${name}&lt;/field&gt;
            &lt;field name="domain"&gt;[("${field_name}", "in", Eval('${values}'))]&lt;/field&gt;
            &lt;field name="search_value"&gt;${}&lt;/field&gt;
        &lt;/record&gt;
        &lt;record model="ir.action.act_window.view" id="act_${model}_${name}_tree"&gt;
            &lt;field name="sequence" eval="10"/&gt;
            &lt;field name="view" ref="${model}_${name}_tree_view"/&gt;
            &lt;field name="act_window" ref="act_${model}_${name}"/&gt;
        &lt;/record&gt;
        &lt;record model="ir.action.act_window.view" id="act_${model}_${name}_form"&gt;
            &lt;field name="sequence" eval="20"/&gt;
            &lt;field name="view" ref="${model}_${name}_form_view"/&gt;
            &lt;field name="act_window" ref="act_${model}_${name}"/&gt;
        &lt;/record&gt;
        &lt;menuitem
            parent="${module}.menu_${parent}_${menu}"
            action="act_${model}_${name}"
            id="menu_${model}_${name}"/&gt;
        &lt;record model="ir.model.access" id="access_${model}_${name}_configuration"&gt;
            &lt;field name="model" search="[('model', '=', '${model}.${name}')]"/&gt;
            &lt;field name="perm_read" eval="True"/&gt;
            &lt;field name="perm_write" eval="False"/&gt;
            &lt;field name="perm_create" eval="False"/&gt;
            &lt;field name="perm_delete" eval="False"/&gt;
        &lt;/record&gt;
        &lt;record model="ir.model.access" id="access_${model}_${name}_configuration_admin"&gt;
            &lt;field name="model" search="[('model', '=', '${model}.${name}')]"/&gt;
            &lt;field name="group" ref="group_${model}_${name}_admin"/&gt;
            &lt;field name="perm_read" eval="True"/&gt;
            &lt;field name="perm_write" eval="True"/&gt;
            &lt;field name="perm_create" eval="True"/&gt;
            &lt;field name="perm_delete" eval="True"/&gt;
        &lt;/record&gt;</template><template autoinsert="true" context="xml_all" deleted="false" description="Record Model 3" enabled="true" name="record_model_3">&lt;!-- ${model}.${name}.${identifier} --&gt;
        &lt;record model="ir.ui.view" id="${model}_${name}_${identifier}_tree_view"&gt;
            &lt;field name="model"&gt;${model}.${name}.${identifier}&lt;/field&gt;
            &lt;field name="type"&gt;tree&lt;/field&gt;
            &lt;field name="priority" eval="30"/&gt;
            &lt;field name="name"&gt;${model}_${name}_${identifier}_tree_view&lt;/field&gt;
        &lt;/record&gt;
        &lt;record model="ir.ui.view" id="${model}_${name}_${identifier}_form_view"&gt;
            &lt;field name="model"&gt;${model}.${name}.${identifier}&lt;/field&gt;
            &lt;field name="type"&gt;form&lt;/field&gt;
            &lt;field name="priority" eval="30"/&gt;
            &lt;field name="name"&gt;${model}_${name}_${identifier}_form_view&lt;/field&gt;
        &lt;/record&gt;
        &lt;record model="ir.action.act_window" id="act_${model}_${name}_${identifier}"&gt;
            &lt;field name="name"&gt;${Model_Name}&lt;/field&gt;
            &lt;field name="res_model"&gt;${model}.${name}.${identifier}&lt;/field&gt;
            &lt;field name="domain"&gt;[("${field_name}", "in", Eval('${values}'))]&lt;/field&gt;
            &lt;field name="search_value"&gt;${}&lt;/field&gt;
        &lt;/record&gt;
        &lt;record model="ir.action.act_window.view" id="act_${model}_${name}_${identifier}_tree"&gt;
            &lt;field name="sequence" eval="10"/&gt;
            &lt;field name="view" ref="${model}_${name}_${identifier}_tree_view"/&gt;
            &lt;field name="act_window" ref="act_${model}_${name}_${identifier}"/&gt;
        &lt;/record&gt;
        &lt;record model="ir.action.act_window.view" id="act_${model}_${name}_${identifier}_form"&gt;
            &lt;field name="sequence" eval="20"/&gt;
            &lt;field name="view" ref="${model}_${name}_${identifier}_form_view"/&gt;
            &lt;field name="act_window" ref="act_${model}_${name}_${identifier}"/&gt;
        &lt;/record&gt;
        &lt;menuitem
            id="menu_${model}_${name}_${identifier}"
            parent="${module}.menu_${parent}_${menu}"
            action="act_${model}_${name}_${identifier}"
            /&gt;
        &lt;record model="ir.model.access" id="access_${model}_${name}_${identifier}_configuration"&gt;
            &lt;field name="model" search="[('model', '=', '${model}.${name}.${identifier}')]"/&gt;
            &lt;field name="perm_read" eval="True"/&gt;
            &lt;field name="perm_write" eval="False"/&gt;
            &lt;field name="perm_create" eval="False"/&gt;
            &lt;field name="perm_delete" eval="False"/&gt;
        &lt;/record&gt;
        &lt;record model="ir.model.access" id="access_${model}_${name}_${identifier}_configuration_admin"&gt;
            &lt;field name="model" search="[('model', '=', '${model}.${name}.${identifier}')]"/&gt;
            &lt;field name="group" ref="group_${model}_${name}_${identifier}_admin"/&gt;
            &lt;field name="perm_read" eval="True"/&gt;
            &lt;field name="perm_write" eval="True"/&gt;
            &lt;field name="perm_create" eval="True"/&gt;
            &lt;field name="perm_delete" eval="True"/&gt;
        &lt;/record&gt;</template><template autoinsert="true" context="xml_all" deleted="false" description="Tree Field" enabled="true" name="tree_field">&lt;field name="${field}"/&gt;
    ${cursor}</template><template autoinsert="true" context="xml_all" deleted="false" description="Inherited Tree View" enabled="true" name="tree_inherited_view">&lt;?xml version="1.0"?&gt;
&lt;!-- This file is part of ${module_name} module for Tryton.
The COPYRIGHT file at the top level of this repository contains the full
copyright notices and license terms. --&gt;
&lt;data&gt;
    &lt;xpath expr="/tree/${field}[@name=&amp;quot;${field_name}&amp;quot;]"
            position="${after}"&gt;
        &lt;field name="${name}"/&gt;
        ${cursor}
    &lt;/xpath&gt;
&lt;/data&gt;</template><template autoinsert="true" context="xml_all" deleted="false" description="Tree View" enabled="true" name="tree_view">&lt;?xml version="1.0"?&gt;
&lt;!-- This file is part of ${module_name} module for Tryton.
The COPYRIGHT file at the top level of this repository contains the full
copyright notices and license terms. --&gt;
&lt;tree string="${Label}"&gt;
    &lt;field name="${name}"/&gt;
    ${cursor}
&lt;/tree&gt;</template><template autoinsert="true" context="xml_all" deleted="false" description="Record View Inherited 2" enabled="true" name="view_inherited_record_2">&lt;!-- ${model}.${name} --&gt;
        &lt;record model="ir.ui.view" id="${identifier_tree_view}"&gt;
            &lt;field name="model"&gt;${model}.${name}&lt;/field&gt;
            &lt;field name="inherit"
                ref="${module}.${identifier_tree_view}"/&gt;
            &lt;field name="name"&gt;${model}_${name}_tree_view&lt;/field&gt;
        &lt;/record&gt;
        &lt;record model="ir.ui.view" id="${identifier_form_view}"&gt;
            &lt;field name="model"&gt;${model}.${name}&lt;/field&gt;
            &lt;field name="inherit"
                ref="${module}.${identifier_form_view}"/&gt;
            &lt;field name="name"&gt;${model}_${name}_form_view&lt;/field&gt;
        &lt;/record&gt;</template><template autoinsert="true" context="xml_all" deleted="false" description="Record View Inherited 3" enabled="true" name="view_inherited_record_3">&lt;!-- ${model}.${name}.${identifier} --&gt;
        &lt;record model="ir.ui.view" id="${identifier_tree_view}"&gt;
            &lt;field name="model"&gt;${model}.${name}.${identifier}&lt;/field&gt;
            &lt;field name="inherit"
                ref="${module}.${identifier_tree_view}"/&gt;
            &lt;field name="name"&gt;${model}_${name}_${identifier}_tree_view&lt;/field&gt;
        &lt;/record&gt;
        &lt;record model="ir.ui.view" id="${identifier_form_view}"&gt;
            &lt;field name="model"&gt;${model}.${name}.${identifier}&lt;/field&gt;
            &lt;field name="inherit"
                ref="${module}.${identifier_form_view}"/&gt;
            &lt;field name="name"&gt;${model}_${name}_${identifier}_form_view&lt;/field&gt;
        &lt;/record&gt;</template><template autoinsert="true" context="xml_all" deleted="false" description="XML" enabled="true" name="xml">&lt;?xml version="1.0"?&gt;
&lt;!-- This file is part of ${module_name} module for Tryton.
The COPYRIGHT file at the top level of this repository contains the full
copyright notices and license terms. --&gt;
&lt;tryton&gt;
    &lt;data&gt;
    ${cursor}
    &lt;/data&gt;
&lt;/tryton&gt;
    </template><template autoinsert="true" context="xml_new" deleted="false" description="xml declaration" enabled="true" id="org.eclipse.wst.xml.ui.internal.templates.xmldeclaration" name="xml declaration">&lt;?xml version="1.0" encoding="${encoding}"?&gt;</template></templates>