blob: d962bea4e6d6b69602e5ca8b9110a4f97ff9863d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="assets_frontend" inherit_id="web_editor.assets_frontend" name="Portal Rating Assets">
<xpath expr="//link[last()]" position="after">
<link rel="stylesheet" type="text/scss" href="/portal_rating/static/src/scss/portal_rating.scss"/>
</xpath>
<xpath expr="//script[last()]" position="after">
<script type="text/javascript" src="/portal_rating/static/src/js/portal_chatter.js"></script>
<script type="text/javascript" src="/portal_rating/static/src/js/portal_composer.js"></script>
<script type="text/javascript" src="/portal_rating/static/src/js/portal_rating_composer.js"></script>
</xpath>
</template>
</odoo>
|