32 lines
927 B
HTML
32 lines
927 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Shortlist</title>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
<a href="{% url 'scouting:player_list' %}">Back to search</a>
|
|
</p>
|
|
<h1>Shared Development Shortlist</h1>
|
|
<p>This MVP shortlist is shared across the local development environment.</p>
|
|
|
|
<ul>
|
|
{% for entry in favorites %}
|
|
<li>
|
|
<a href="{% url 'scouting:player_detail' entry.player.id %}">{{ entry.player.full_name }}</a>
|
|
({{ entry.player.position }})
|
|
| Notes: {{ entry.note_count }}
|
|
<form method="post" action="{% url 'scouting:remove_favorite' entry.player.id %}">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="next" value="{{ request.get_full_path }}">
|
|
<button type="submit">Remove from shortlist</button>
|
|
</form>
|
|
</li>
|
|
{% empty %}
|
|
<li>No shortlisted players yet.</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|