File size: 777 Bytes
08edd17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>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>