blob: 5d0d7c6e76800e0393d6293a60441da7094fc017 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="pragma" content="no-cache" />
<title>{{ title or "Odoo's IoT Box" }}</title>
<script type="text/javascript" src="/web/static/lib/jquery/jquery.js"></script>
<style>
body {
width: 600px;
margin: 30px auto;
font-family: sans-serif;
text-align: justify;
color: #6B6B6B;
background-color: #f1f1f1;
}
.text-green {
color: #28a745;
}
.text-red {
color: #dc3545;
}
.text-blue {
color: #007bff;
}
.text-center {
text-align: center;
}
.float-right {
float: right;
}
.btn {
display: inline-block;
padding: 8px 15px;
border: 1px solid #dadada;
border-radius: 3px;
font-weight: bold;
font-size: 0.8rem;
background: #fff;
color: #00a09d;
cursor: pointer;
}
.btn-sm {
padding: 4px 8px;
font-size: 1.0rem;
font-weight: normal;
}
.btn:hover {
background-color: #f1f1f1;
}
a {
text-decoration: none;
color: #00a09d;
}
a:hover {
color: #006d6b;
}
.container {
padding: 10px 20px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.17);
}
.breadcrumb {
margin-bottom: 10px;
font-size: 0.9rem;
}
input[type="text"], input[type="password"] {
padding: 6px 12px;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 3px;
color: inherit;
}
input::placeholder {
color: #ccc;
opacity: 1; /* Firefox */
}
select {
padding: 6px 12px;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 3px;
color: inherit;
background: #ffffff;
width: 100%;
}
.o_hide {
display: none;
}
.font-small {
font-size: 0.8rem;
}
.footer {
margin-top: 12px;
text-align: right;
}
.footer a {
margin-left: 8px;
}
.loading-block {
position: absolute;
background-color: #0a060661;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
}
.loading-message-block {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.loading-message {
font-size: 14px;
line-height: 20px;
color:white
}
@keyframes spin {
from {transform:rotate(0deg);}
to {transform:rotate(360deg);}
}
</style>
{% block head %}{% endblock %}
</head>
<body>
{%if breadcrumb %}
<div class="breadcrumb"><a href="/">Home</a> / <span>{{ breadcrumb }}</span></div>
{% endif %}
<div class="container">
{% block content %}{% endblock %}
<p class="error-message text-red" style="text-align: right;" />
</div>
<div class="footer">
<a href='https://www.odoo.com/help'>Help</a>
<a href='https://www.odoo.com/documentation/14.0/applications/productivity/iot.html'>Documentation</a>
</div>
</body>
</html>
|