2018-12-14 01:58:59 +00:00
|
|
|
{% extends "GeoffreyApp/base.html" %}
|
|
|
|
|
2019-01-12 21:06:06 +00:00
|
|
|
{% block header %}
|
|
|
|
Geoffrey
|
|
|
|
{% endblock %}
|
|
|
|
|
2018-12-14 01:58:59 +00:00
|
|
|
{% block content %}
|
2019-01-12 21:06:06 +00:00
|
|
|
<h3>About</h3>
|
2018-12-14 01:58:59 +00:00
|
|
|
<p>Geoffrey is a database for storing information on Players, Bases, Shops, Towns, and more! </p>
|
2019-01-12 21:06:06 +00:00
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
2018-12-14 01:58:59 +00:00
|
|
|
{% endblock %}
|