{% extends "admin_base.html" %} {% block title %}Dashboard — GoldBuy Admin{% endblock %} {% block admin_content %}

Dashboard

{{ by_status['new'] }} new lead{{ '' if by_status['new'] == 1 else 's' }} →
{% if not smtp_ready %}
Email notifications are not set up — configure SMTP settings to receive new listings by email.
{% endif %}
{{ by_status['new'] }}
New leads to call
{{ total }}
Total listings
{{ this_week }}
Submitted this week
{{ user_count }}
Registered users
KSh {{ '{:,.0f}'.format(pipeline_value) }}
Asking value in pipeline
KSh {{ '{:,.0f}'.format(bought_value) }}
Value of items bought

Submissions — last 14 days

{% for day in chart %}
{{ day.count if day.count else '' }}
{{ day.label.split(' ')[0] }}
{% endfor %}

Pipeline

Latest listings

{% if recent_listings %} {% for l in recent_listings %} {% endfor %}
ItemPriceSellerStatus
{{ l['item_title'] }} KSh {{ l['price'] }} {{ l['seller_name'] }} {{ STATUS_LABELS[l['status']] }}
{% else %}

No listings yet.

{% endif %}

Newest users

{% if recent_users %} {% for u in recent_users %} {% endfor %}
NameEmailItems
{{ u['name'] }}{% if u['is_admin'] %} admin{% endif %} {{ u['email'] }} {{ u['items'] }}
{% else %}

No users yet.

{% endif %}
{% endblock %}