{% extends "base.html" %} {% block title %}Admin Panel - ABYSS SMS{% endblock %} {% block content %}

Manage Users

View and edit user accounts

SMS Ranges

Manage SMS ranges

SMS Numbers

Manage SMS numbers

Send SMS

Send SMS to numbers

Activity Logs

View all activity logs

SMS CDR

View SMS call records

System Statistics
Total Users: {{ stats.total_users }}
Active Users: {{ stats.active_users }}
Total SMS Ranges: {{ stats.total_ranges }}
Total SMS Numbers: {{ stats.total_numbers }}
Total CDR Records: {{ stats.total_cdr }}
SMS Today: {{ stats.today_sms }}
News Management
Add News
    {% if recent_news %} {% for news in recent_news %}
  • {{ news.headline }}
    {{ news.created_at.strftime('%Y-%m-%d') if news.created_at else '' }}
  • {% endfor %} {% else %}
  • No news available.
  • {% endif %}
{% endblock %}