refomap_adm / templates /list.html
Persano's picture
Create list.html
08edd17 verified
raw
history blame contribute delete
777 Bytes
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Lista de Orçamentos</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<h1>Orçamentos de Reforma</h1>
<a href="{{ url_for('novo_orcamento') }}">Novo Orçamento</a>
<ul>
{% for o in orcamentos %}
<li>
{{ o.cliente }} - R$ {{ o.total }} -
<a href="{{ url_for('visualizar_orcamento', id=o.id) }}">Ver</a> |
<a href="{{ url_for('editar_orcamento', id=o.id) }}">Editar</a> |
<a href="{{ url_for('excluir_orcamento', id=o.id) }}">Excluir</a> |
<a href="{{ url_for('gerar_pdf', id=o.id) }}">PDF</a>
</li>
{% endfor %}
</ul>
</body>
</html>