{% extends "base.html" %} {% block title %}Dashboard - Review Hound{% endblock %} {% block content %}

Business Dashboard

Track and analyze your business reviews

{% if businesses %}
{% for item in businesses %}

{{ item.business.name }}

{% if item.scrape_issues %} {% endif %}
{{ "%.1f"|format(item.avg_rating) }} {% if item.trend_direction == 'up' %} {{ "%.1f"|format(item.trend_delta|abs) }} {% elif item.trend_direction == 'down' %} {{ "%.1f"|format(item.trend_delta|abs) }} {% elif item.trend_direction == 'stable' %} stable {% endif %}
({{ item.total_reviews }} reviews)
{% if item.recent_negative_count > 0 %} {{ item.recent_negative_count }} negative this week {% endif %} {% if item.scrape_issues %} {% if item.scrape_issue_type == 'failed' %} {{ item.scrape_issue_sources|join(', ') }} failing {% else %} {{ item.scrape_issue_sources|join(', ') }}: no reviews found {% endif %} {% endif %}
{% if item.recent_count > 0 %} {{ item.recent_count }} new this week {% endif %} {% if item.last_review_date %} {% if item.recent_count > 0 %}{% endif %} Last: {{ item.last_review_date.strftime('%b %d') }} {% endif %}
Sentiment {{ "%.0f"|format(item.positive_pct) }}% positive
{% if item.business.trustpilot_url %} TrustPilot {% endif %} {% if item.business.bbb_url %} BBB {% endif %} {% if item.business.yelp_url or item.business.yelp_business_id %} Yelp {% endif %} {% if item.business.google_place_id %} Google {% endif %}
View Details
{% endfor %}
{% else %}

No businesses tracked yet

Get started by adding your first business to track reviews.

{% endif %} {% endblock %}