2019-01-11 22:40:12 +00:00
|
|
|
{% extends "GeoffreyApp/base.html" %}
|
|
|
|
|
2019-01-12 21:06:06 +00:00
|
|
|
{% block header %}
|
|
|
|
Search results for {{ search }}...
|
|
|
|
{% endblock %}
|
|
|
|
|
2019-01-11 22:40:12 +00:00
|
|
|
{% block content %}
|
2019-01-12 21:06:06 +00:00
|
|
|
<h2>Players</h2>
|
2019-01-14 01:27:48 +00:00
|
|
|
{% include "GeoffreyApp/player_table.html" %}
|
2019-01-12 21:06:06 +00:00
|
|
|
|
|
|
|
<hr class="my-4">
|
2019-01-11 22:40:12 +00:00
|
|
|
|
2019-01-14 01:27:48 +00:00
|
|
|
{% include "GeoffreyApp/location_table.html" with show_owner=True %}
|
2019-01-11 22:40:12 +00:00
|
|
|
|
|
|
|
{% endblock %}
|