Files
hoopscout/templates/scouting/watchlist.html

14 lines
415 B
HTML

{% extends "base.html" %}
{% block title %}HoopScout | Watchlist{% endblock %}
{% block content %}
<section class="panel">
<div class="flex flex-wrap items-center justify-between gap-3">
<h1>Watchlist</h1>
<a class="btn-secondary" href="{% url 'scouting:index' %}">Back to scouting</a>
</div>
{% include "scouting/partials/watchlist_table.html" with favorites=favorites %}
</section>
{% endblock %}