{% comment %}Partial that renders the synonyms list + add form. Used by condition_detail and HTMX responses.{% endcomment %} {% load static %} {% with syns=condition.get_synonyms %} {% if syns %} {% for syn in syns %} {{ syn }} {% endfor %} {% else %} — {% endif %} {% endwith %} {% if request.user.is_authenticated and can_merge %}
{% csrf_token %}
{{ synonym_form.condition }}
{% csrf_token %}
{% endif %}