37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
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>
|
|
| Signed in as {{ request.user.username }}
|
|
| <form method="post" action="{% url 'logout' %}" style="display:inline;">
|
|
{% csrf_token %}
|
|
<button type="submit">Log out</button>
|
|
</form>
|
|
</p>
|
|
<h1>Your Shortlist</h1>
|
|
<p>This page shows favorites saved only for your account.</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>
|