{% extends "base.html" %} {% block title %}SMS Ranges - ABYSS SMS{% endblock %} {% block content %}
Available SMS Ranges
{% if ranges.items %} {% for range in ranges.items %} {% endfor %} {% else %} {% endif %}
Prefix Country Operator Network Type HLR Lookup MCC MNC Cost
{{ range.prefix }} {{ range.country }} {{ range.operator or 'N/A' }} {{ range.network_type or 'N/A' }} {% if range.hlr_lookup %} Available {% else %} N/A {% endif %} {{ range.mcc or 'N/A' }} {{ range.mnc or 'N/A' }} {{ range.cost_per_sms if range.cost_per_sms else '0.00' }} {{ current_user.currency if current_user.currency else 'USD' }}
No SMS ranges found.
{% if ranges.pages > 1 %} {% endif %}
{% endblock %}