Geoffrey-Django/GeoffreyApp/templates/GeoffreyApp/home.html

31 lines
675 B
HTML

{% extends "GeoffreyApp/base.html" %}
{% block header %}
Geoffrey
{% endblock %}
{% block content %}
<h3>About</h3>
<p>Geoffrey is a database for storing information on Players, Bases, Shops, Towns, and more! </p>
<h3>Current Database Counts</h3>
<table class="table table-hover link-table">
<thead class="bg-dark">
<tr>
<th>Type</th>
<th>Count</th>
</tr>
</thead>
<tbody>
{% for stat in stat_list %}
<tr>
<td>{{ stat.0 }}</td>
<td>{{ stat.1 }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}