mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
rename web into demo
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Odoo</title>
|
||||
<link rel="icon" href="data:,">
|
||||
|
||||
<!-- Bootstrap... This sucks. -->
|
||||
<script src="/static/libs/jquery/jquery-3.3.1.slim.min.js"></script>
|
||||
<script src="/static/libs/popper/popper.min.js"></script>
|
||||
<link rel="stylesheet" href="/static/libs/bootstrap/bootstrap.min.css">
|
||||
<script src="/static/libs/bootstrap/bootstrap.min.js"></script>
|
||||
|
||||
<!-- Font awesome -->
|
||||
<link rel="stylesheet" href="/static/libs/fontawesome/css/all.min.css">
|
||||
|
||||
<!-- AMD module system -->
|
||||
<script src="/static/libs/almond/almond.js"></script>
|
||||
|
||||
<!-- Application JS/CSS -->
|
||||
<script src="/main.js"></script>
|
||||
<link rel="stylesheet" href="/app.css">
|
||||
|
||||
<script src="/demo_data.js"></script>
|
||||
|
||||
<script>
|
||||
window.odoo = {};
|
||||
|
||||
// we add demo data here
|
||||
window.odoo.menus = demoData.menus;
|
||||
|
||||
// this will start the main.ts code, which creates the web client
|
||||
require('main');
|
||||
</script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user