minecraft_manager/templates/minecraft_manager/reference.html

24 lines
590 B
HTML

{% extends "minecraft_manager/dashboard.html" %}
{% load static %}
{% block section %}
<div id="content">
<table id="model-table" class="table table-striped">
<thead>
<tr>
<th>Username</th>
<th>Age</th>
<th>Reference</th>
</tr>
</thead>
<tbody>
{% for app in applications %}
<tr>
<td>{{ app.username }}</td>
<td>{{ app.age }}</td>
<td>{{ app.reference }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock section %}