samuel-moreira's picture
Upload 71 files
b9a69cb verified
{% extends 'base.html' %}
{% block conteudo %}
<style>
.container {
display: flex;
justify-content: center;
align-items: center;
height: 70vh;
}
.content-table {
border-collapse: collapse;
margin: 25px 0;
font-size: 0.9em;
min-width: 400px;
}
.content-table thead tr {
background-color: #283e41;
color: #fff;
text-align: left;
font-weight: bold;
}
.content-table th,
.content-table td {
padding: 12px 15px;
}
.content-table tbody tr {
border-bottom: 1px solid #dddddda1;
background-color: rgba(0,0,0,0.1);;
}
.content-table tbody tr:last-of-type {
border-bottom: 2px solid #283e41;
}
</style>
<body>
<h1>Usuários</h1>
<div class="container">
<table class="content-table">
<thead>
<tr>
<th>Nome</th>
<th>Sobrenome</th>
<th>Email</th>
<th>Tipo</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<td>{{user.nome}}</td>
<td>{{user.sobrenome}}</td>
<td>{{user.email}}</td>
<td>{{user.user_type}}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</body>
{% endblock %}