rename web into demo

This commit is contained in:
Géry Debongnie
2019-03-14 11:02:14 +01:00
parent 75218b65e7
commit 2ffb0fd64c
1731 changed files with 8 additions and 12 deletions
+39
View File
@@ -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>