File size: 804 Bytes
b12c089
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="pt-BR">
<head>
    <meta charset="UTF-8">
    <title>Dashboard</title>
    <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<div class="container">
    <h1>Seus Orçamentos</h1>
    <a href="{{ url_for('criar_orcamento') }}">+ Novo Orçamento</a>
    <ul>
    {% for o in orcamentos %}
        <li>
            <a href="{{ url_for('visualizar_orcamento', orcamento_id=o.id) }}">{{ o.cliente }} - R$ {{ o.valor_total }}</a>
            <form method="post" action="{{ url_for('excluir_orcamento', orcamento_id=o.id) }}" style="display:inline;">
                <button type="submit">Excluir</button>
            </form>
        </li>
    {% endfor %}
    </ul>
    <a href="{{ url_for('logout') }}">Sair</a>
</div>
</body>
</html>