#10 Started to create a table for administrating users
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user