refomap_adm / templates /contrato.html
Persano's picture
Create contrato.html
e983873 verified
raw
history blame contribute delete
686 Bytes
<!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>