2018-12-14 01:58:59 +00:00
|
|
|
{% extends "GeoffreyApp/base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2019-01-11 22:40:12 +00:00
|
|
|
|
2018-12-14 01:58:59 +00:00
|
|
|
{% if player_list %}
|
|
|
|
<ul>
|
|
|
|
{% for player in player_list %}
|
|
|
|
<li>
|
|
|
|
{{ player.name }}
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% else %}
|
|
|
|
<p>There are no players in the database :pepethonk:</p>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endblock %}
|