13 lines
457 B
HTML
13 lines
457 B
HTML
<button
|
|
class="btn btn-sm {% if question.frcr_appropriate %}btn-success{% else %}btn-outline-secondary{% endif %}"
|
|
hx-post="{% url 'sbas:toggle_frcr' pk=question.pk %}"
|
|
hx-swap="outerHTML"
|
|
title="Toggle FRCR-appropriate"
|
|
>
|
|
{% if question.frcr_appropriate %}
|
|
<i class="bi bi-check-circle me-1" aria-hidden="true"></i>FRCR
|
|
{% else %}
|
|
<i class="bi bi-x-circle me-1" aria-hidden="true"></i>FRCR
|
|
{% endif %}
|
|
</button>
|