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

15 lines
316 B
HTML

{% extends "GeoffreyApp/base.html" %}
{% block header %}
Search results for {{ search }}...
{% endblock %}
{% block content %}
<h2>Players</h2>
{% include "GeoffreyApp/player_table.html" %}
<hr class="my-4">
{% include "GeoffreyApp/location_table.html" with show_owner=True %}
{% endblock %}