29 lines
916 B
HTML
29 lines
916 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}HoopScout | Scouting{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel">
|
|
<div class="flex flex-wrap items-start justify-between gap-3">
|
|
<div>
|
|
<h1>Scouting Workspace</h1>
|
|
<p class="mt-1 text-sm text-slate-600">Manage saved searches and your player watchlist.</p>
|
|
</div>
|
|
<div class="flex flex-wrap gap-2">
|
|
<a class="btn-secondary" href="{% url 'scouting:saved_search_list' %}">All saved searches</a>
|
|
<a class="btn-secondary" href="{% url 'scouting:watchlist' %}">Watchlist</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="panel mt-4">
|
|
<h2>Saved Searches</h2>
|
|
{% include "scouting/partials/saved_search_table.html" with saved_searches=saved_searches %}
|
|
</section>
|
|
|
|
<section class="panel mt-4">
|
|
<h2>Watchlist</h2>
|
|
{% include "scouting/partials/watchlist_table.html" with favorites=favorites %}
|
|
</section>
|
|
{% endblock %}
|