29 lines
858 B
HTML
29 lines
858 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}HoopScout | Scouting{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel">
|
|
<div class="row-between wrap-gap">
|
|
<div>
|
|
<h1>Scouting Workspace</h1>
|
|
<p class="muted-text">Manage saved searches and your player watchlist.</p>
|
|
</div>
|
|
<div class="row-gap">
|
|
<a class="button ghost" href="{% url 'scouting:saved_search_list' %}">All saved searches</a>
|
|
<a class="button ghost" href="{% url 'scouting:watchlist' %}">Watchlist</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="panel mt-16">
|
|
<h2>Saved Searches</h2>
|
|
{% include "scouting/partials/saved_search_table.html" with saved_searches=saved_searches %}
|
|
</section>
|
|
|
|
<section class="panel mt-16">
|
|
<h2>Watchlist</h2>
|
|
{% include "scouting/partials/watchlist_table.html" with favorites=favorites %}
|
|
</section>
|
|
{% endblock %}
|