Spaces:
No application file
No application file
Create contrato.html
Browse files- templates/contrato.html +23 -0
templates/contrato.html
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="pt-BR">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<title>Contrato de Reforma</title>
|
6 |
+
<style>
|
7 |
+
body { font-family: Arial, sans-serif; padding: 30px; }
|
8 |
+
h1 { color: #004080; }
|
9 |
+
p, li { font-size: 14px; }
|
10 |
+
</style>
|
11 |
+
</head>
|
12 |
+
<body>
|
13 |
+
<h1>Contrato de Reforma</h1>
|
14 |
+
<p><strong>Cliente:</strong> {{ o.cliente }}</p>
|
15 |
+
<p><strong>Endereço da Obra:</strong> {{ o.endereco }}</p>
|
16 |
+
<p><strong>Início:</strong> {{ o.inicio }}</p>
|
17 |
+
<p><strong>Área Total:</strong> {{ o.area_total }} m²</p>
|
18 |
+
<h3>Orçamento Total:</h3>
|
19 |
+
<p>R$ {{ o.total }}</p>
|
20 |
+
<p><strong>Detalhes:</strong></p>
|
21 |
+
<p>{{ o.detalhes }}</p>
|
22 |
+
</body>
|
23 |
+
</html>
|