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