Spaces:
No application file
No application file
| <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> | |