refomap_adm / templates /relatorio.html
Persano's picture
Create relatorio.html
950ffb4 verified
raw
history blame contribute delete
644 Bytes
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Relatório de Orçamento</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<h1>Relatório da Obra</h1>
<p><strong>Cliente:</strong> {{ o.cliente }}</p>
<p><strong>Endereço:</strong> {{ o.endereco }}</p>
<p><strong>Área:</strong> {{ o.area_total }} m²</p>
<p><strong>Início:</strong> {{ o.inicio }}</p>
<p><strong>Total:</strong> R$ {{ o.total }}</p>
<p><strong>Detalhes:</strong> {{ o.detalhes }}</p>
<a href="{{ url_for('listar_orcamentos') }}">Voltar</a>
</body>
</html>