18 lines
555 B
HTML
18 lines
555 B
HTML
<form
|
|
id="favorite-form-{{ player.id }}"
|
|
method="post"
|
|
action="{% url 'scouting:favorite_toggle' player.id %}"
|
|
hx-post="{% url 'scouting:favorite_toggle' player.id %}"
|
|
hx-target="#favorite-form-{{ player.id }}"
|
|
hx-swap="outerHTML"
|
|
hx-indicator="#htmx-loading"
|
|
>
|
|
{% csrf_token %}
|
|
<input type="hidden" name="next" value="{{ next_url }}">
|
|
{% if is_favorite %}
|
|
<button type="submit" class="btn-secondary">Remove favorite</button>
|
|
{% else %}
|
|
<button type="submit" class="btn-secondary">Add favorite</button>
|
|
{% endif %}
|
|
</form>
|