| 12345678910111213141516 |
- {% if row.scout_candidates %}
- <ul class="candidates">
- {% for c in row.scout_candidates %}
- <li>
- <button hx-post="/session/{{ session_id }}/row/{{ row.row_id }}/confirm-category"
- hx-vals='{"category_id": {{ c.id }}, "category_name": {{ c.name | tojson }}}'
- hx-target="#row-{{ row.row_id }}-filtering"
- hx-swap="innerHTML">
- {{ c.name }} <small>(id {{ c.id }})</small>
- </button>
- </li>
- {% endfor %}
- </ul>
- {% else %}
- <span>No candidates found</span>
- {% endif %}
|