Added SQL, dao and app - not functional
This commit is contained in:
16
templates/listar_militantes.html
Normal file
16
templates/listar_militantes.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pt-BR">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Lista de Militantes</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Militantes</h1>
|
||||
<ul>
|
||||
{% for militante in militantes %}
|
||||
<li>{{ militante.nome }} - {{ militante.email }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<a href="{{ url_for('novo_militante') }}">Adicionar Novo Militante</a>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user