14 lines
438 B
HTML
14 lines
438 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}HoopScout | Saved Searches{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel">
|
|
<div class="flex flex-wrap items-center justify-between gap-3">
|
|
<h1>Saved Searches</h1>
|
|
<a class="btn-secondary" href="{% url 'scouting:index' %}">Back to scouting</a>
|
|
</div>
|
|
{% include "scouting/partials/saved_search_table.html" with saved_searches=saved_searches %}
|
|
</section>
|
|
{% endblock %}
|