#10 Started to create a table for administrating users

This commit is contained in:
2024-02-13 11:59:14 +00:00
parent b6721cc777
commit 0ace3273b4
5 changed files with 102 additions and 88 deletions

View File

@ -3,12 +3,13 @@
{% if users != None %}
<p>Showing {{users|count}} users</p>
<div class="user-container">
<table>
<table class="table table-style">
<thead>
<tr>
<th>Username</th>
<th>E-Mail</th>
<th>Phone Number</th>
<th scope="col">Username</th>
<th scope="col">E-Mail</th>
<th scope="col">Phone Number</th>
<th>BUTTON</th>
</tr>
</thead>
<tbody>
@ -17,6 +18,7 @@
<td>{{user.username}}</td>
<td>{{user.email}}</td>
<td>{{user.phone}}</td>
<td>{{user.phone}}</td>
</tr>
<!-- <a href="/products/{{user.id}}" class="product product-link">
<div class="product-title">{{user.username}}</div>