{% extends "base.html" %} {% block title %}Reviews - {{ business.name }}{% endblock %} {% block content %}
← Back to {{ business.name }}

Reviews for {{ business.name }}

{% for r in reviews %}
{{ r.author_name or 'Anonymous' }} {{ '★' * (r.rating|int) }}{{ '☆' * (5 - r.rating|int) if r.rating else '' }} {{ r.sentiment_label or 'neutral' }} ({{ "%.2f"|format(r.sentiment_score) if r.sentiment_score else '0.00' }})
{% if r.review_url %} {{ r.source }} {% else %} {{ r.source }} {% endif %}

{{ r.text or 'No review text' }}

{{ r.review_date or r.scraped_at.strftime('%Y-%m-%d') }}

{% else %}

No reviews found matching your filters.

{% endfor %}
{% if total_pages > 1 %}
{% for p in range(1, total_pages + 1) %} {{ p }} {% endfor %}
{% endif %} {% endblock %}