odex25_standard/odex25_base/odex25_web_grid/views/templates.xml

28 lines
1.7 KiB
XML

<odoo>
<template id="assets_backend" name="grid assets" inherit_id="web.assets_backend">
<xpath expr="." position="inside">
<link rel="stylesheet" type="text/scss" href="/odex25_web_grid/static/src/scss/grid_view.scss"/>
<script type="text/javascript" src="/odex25_web_grid/static/src/js/grid_view.js"/>
<script type="text/javascript" src="/odex25_web_grid/static/src/js/grid_model.js"/>
<script type="text/javascript" src="/odex25_web_grid/static/src/js/grid_controller.js"/>
<script type="text/javascript" src="/odex25_web_grid/static/src/js/grid_renderer.js"/>
<script type="text/javascript" src="/odex25_web_grid/static/src/js/grid_components.js"/>
<script type="text/javascript" src="/odex25_web_grid/static/src/js/grid_component_registry.js"/>
</xpath>
</template>
<template id="qunit_suite" name="grid tests" inherit_id="web.qunit_suite_tests">
<xpath expr="//script[contains(@src, '/web/static/tests/views/kanban_tests.js')]" position="after">
<script type="text/javascript" src="/odex25_web_grid/static/tests/mock_server.js"></script>
<script type="text/javascript" src="/odex25_web_grid/static/tests/grid_tests.js"></script>
</xpath>
</template>
<template id="qunit_mobile_suite" name="grid mobile tests" inherit_id="web.qunit_mobile_suite_tests">
<xpath expr="." position="inside">
<script type="text/javascript" src="/odex25_web_grid/static/tests/mock_server.js"></script>
<script type="text/javascript" src="/odex25_web_grid/static/tests/grid_mobile_tests.js"/>
</xpath>
</template>
</odoo>