{# partial: list of questions for HTMX search results #}
{% if questions %} {% for question in questions %}
{{ question.title|default:question.get_stem_stripped|truncatechars:80 }}
#{{ question.pk }}
{% if question.author.all %} By {{ question.author.all|join:", " }} {% endif %} {% if question.category %}{{ question.category.category }}{% endif %} {% if question.frcr_appropriate %}FRCR{% endif %}
{% for c in question.condition.all|slice:":3" %} {{ c.name }} {% endfor %} {% for p in question.presentation.all|slice:":3" %} {{ p.name }} {% endfor %} {% for s in question.subspecialty.all|slice:":3" %} {{ s.name }} {% endfor %}

{{ question.stem|striptags|truncatechars:160 }}

{% endfor %} {% else %}
No questions found
{% endif %}