odex25_standard/odex25_base/tour_genius/views/assets.xml

34 lines
2.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Backend Assets -->
<template id="assets_backend_inherit_tour_genius" inherit_id="web.assets_backend" name="Tour Genius backend assets">
<xpath expr="link[last()]" position="after">
<link rel="stylesheet" type="text/css" href="/tour_genius/static/src/css/tour_genius.css"/>
</xpath>
<xpath expr="script[last()]" position="after">
<script type="text/javascript" src="/tour_genius/static/src/js/genius_celebration.js"/>
<script type="text/javascript" src="/tour_genius/static/src/js/genius_quiz_popup.js"/>
<script type="text/javascript" src="/tour_genius/static/src/js/dashboard.js"/>
<script type="text/javascript" src="/tour_genius/static/src/js/recorder_panel.js"/>
<script type="text/javascript" src="/tour_genius/static/src/js/tour_client_action.js"/>
<script type="text/javascript" src="/tour_genius/static/src/js/genius_tip.js"/>
<script type="text/javascript" src="/tour_genius/static/src/js/tour_loader.js"/>
<script type="text/javascript" src="/tour_genius/static/src/js/smart_systray.js"/>
</xpath>
</template>
<!-- Frontend Assets (Website/Login) -->
<template id="assets_frontend_inherit_tour_genius" inherit_id="web.assets_frontend" name="Tour Genius frontend assets">
<xpath expr="link[last()]" position="after">
<link rel="stylesheet" type="text/css" href="/tour_genius/static/src/css/tour_genius.css"/>
</xpath>
<xpath expr="script[last()]" position="after">
<script type="text/javascript" src="/tour_genius/static/src/js/genius_tip.js"/>
<script type="text/javascript" src="/tour_genius/static/src/js/tour_loader.js"/>
<!-- Also load celebration and popup widgets for frontend usage -->
<script type="text/javascript" src="/tour_genius/static/src/js/genius_celebration.js"/>
<script type="text/javascript" src="/tour_genius/static/src/js/genius_quiz_popup.js"/>
</xpath>
</template>
</odoo>