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

9 lines
227 B
HTML

{% extends "GeoffreyApp/base.html" %}
{% block header %}
{{ player.name }}
{% endblock %}
{% block content %}
<h2>Locations</h2>
{% include "GeoffreyApp/location_table.html" with loc_list=loc_list %}
{% endblock %}