24 lines
522 B
HTML
24 lines
522 B
HTML
|
{% extends "base_settings_page.html" %}
|
||
|
{% block content %}
|
||
|
|
||
|
<table class="table table-hover" style="max-width: 600px;" aria-describedby="Clients list">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th scope="col">ID</th>
|
||
|
<th scope="col">Name</th>
|
||
|
<th scope="col">Description</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for c in clients %}
|
||
|
<tr>
|
||
|
<td>{{ c.id.0 }}</td>
|
||
|
<td>{{ c.name }}</td>
|
||
|
<td>{{ c.description }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
{% endblock content %}
|