_scout_result.html 513 B

12345678910111213141516
  1. {% if row.scout_candidates %}
  2. <ul class="candidates">
  3. {% for c in row.scout_candidates %}
  4. <li>
  5. <button hx-post="/session/{{ session_id }}/row/{{ row.row_id }}/confirm-category"
  6. hx-vals='{"category_id": {{ c.id }}, "category_name": {{ c.name | tojson }}}'
  7. hx-target="#row-{{ row.row_id }}-filtering"
  8. hx-swap="innerHTML">
  9. {{ c.name }} <small>(id {{ c.id }})</small>
  10. </button>
  11. </li>
  12. {% endfor %}
  13. </ul>
  14. {% else %}
  15. <span>No candidates found</span>
  16. {% endif %}