Geoffrey-Django/templates/GeoffreyApp/home.html

13 lines
516 B
HTML

{% extends "GeoffreyApp/base.html" %}
{% block content %}
<h2>Geoffrey Minecraft Database Home</h2>
<p>Geoffrey is a database for storing information on Players, Bases, Shops, Towns, and more! </p>
<p>Current Database Count:</p>
<ul>
<li><strong>Players:</strong> {{ num_players }}</li>
<li><strong>Shops:</strong> {{ num_shops }}</li>
<li><strong>Items for Sale:</strong> {{ num_items }}</li>
<li><strong>Bases:</strong> {{ num_bases }}</li>
</ul>
{% endblock %}