Spaces:
No application file
No application file
Create relatorio.html
Browse files- templates/relatorio.html +18 -0
templates/relatorio.html
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="pt-BR">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<title>Relat贸rio de Or莽amento</title>
|
6 |
+
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
7 |
+
</head>
|
8 |
+
<body>
|
9 |
+
<h1>Relat贸rio da Obra</h1>
|
10 |
+
<p><strong>Cliente:</strong> {{ o.cliente }}</p>
|
11 |
+
<p><strong>Endere莽o:</strong> {{ o.endereco }}</p>
|
12 |
+
<p><strong>脕rea:</strong> {{ o.area_total }} m虏</p>
|
13 |
+
<p><strong>In铆cio:</strong> {{ o.inicio }}</p>
|
14 |
+
<p><strong>Total:</strong> R$ {{ o.total }}</p>
|
15 |
+
<p><strong>Detalhes:</strong> {{ o.detalhes }}</p>
|
16 |
+
<a href="{{ url_for('listar_orcamentos') }}">Voltar</a>
|
17 |
+
</body>
|
18 |
+
</html>
|