{% if results %}
{{ results|length }} candidates found
{% for c in results %} {% endfor %}
# Wine Vintage Category Region Grape Bottles Rating Signals
{{ loop.index }} {{ c.wine_name }} {{ c.vintage or '' }} {{ c.category }} {{ c.region or '' }} {{ c.primary_grape or '' }} {{ c.bottles_stored }} {{ c.best_pro_score or '—' }} {% for s in c.match_signals[:4] %} {{ s }} {% endfor %} {% if c.match_signals|length > 4 %} +{{ c.match_signals|length - 4 }} {% endif %}
{% else %}

No candidates found. Try broadening your criteria.

{% endif %}