16 lines
630 B
XML
16 lines
630 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<odoo>
|
||
|
<template id="assets_backend" name="pad assets" inherit_id="web.assets_backend">
|
||
|
<xpath expr="." position="inside">
|
||
|
<link rel="stylesheet" href="/pad/static/src/css/etherpad.css" />
|
||
|
<script type="text/javascript" src="/pad/static/src/js/pad.js" />
|
||
|
</xpath>
|
||
|
</template>
|
||
|
|
||
|
<template id="qunit_suite" name="pad tests" inherit_id="web.qunit_suite">
|
||
|
<xpath expr="//script[last()]" position="after">
|
||
|
<script type="text/javascript" src="/pad/static/tests/pad_tests.js"></script>
|
||
|
</xpath>
|
||
|
</template>
|
||
|
</odoo>
|