blob: 0076d8f0316a0d2c421118517a9f2cfaf7dbe48e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="assets_backend" inherit_id="web.assets_backend">
<xpath expr="//link[last()]" position="after">
<link rel="stylesheet" type="text/scss" href="/note/static/src/scss/note.scss"/>
</xpath>
<xpath expr="//script[last()]" position="after">
<script type="text/javascript" src="/note/static/src/js/systray_activity_menu.js"></script>
</xpath>
</template>
<template id="qunit_suite" name="note_tests" inherit_id="web.qunit_suite_tests">
<xpath expr="." position="inside">
<script type="text/javascript" src="/note/static/tests/systray_activity_menu_tests.js"></script>
</xpath>
</template>
</odoo>
|