{% extends "base.html" %} {% block title %}Dashboard - RAZOR SMS PANEL{% endblock %} {% block content %}
Today's SMS
{{ today_sms|default(0) }}
This Week
{{ week_sms|default(0) }}
This Month
{{ month_sms|default(0) }}
SMS Ranges
{{ ranges_count|default(0) }}
My Numbers
{{ numbers_count|default(0) }}
My Clients
{{ clients_count|default(0) }}
API Token
{% if current_user.api_token %}{{ current_user.api_token[:32] }}...{% else %}No token — generate one in Settings{% endif %}
SMS Activity (Last 7 Days)
Latest News
{% if news %}
    {% for item in news %}
  • {{ item.headline }}
    {{ item.created_at.strftime('%Y-%m-%d') if item.created_at else '' }}
  • {% endfor %}
{% else %}

No news available.

{% endif %}
Recent Clients
{% if recent_clients %} {% for client in recent_clients %} {% endfor %}
Username Email Status
{{ client.username }} {{ client.email }} {% if client.is_active %} Active {% else %} Inactive {% endif %}
{% else %}

No clients found.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}