{% extends "base.html" %} {% load staticfiles %} {% block css %} {{ block.super }} {% endblock %} {% block title %} Dashboard {% endblock %} {% block localization %} Dashboard {% endblock %} {% block page-title %}
  • Main Dashboard
  • {% endblock %} {% block content %}
    This month's costs:
    {% for prov,cost in provider_daily_costs%} {% endfor %}
    {{prov.name}} {{ user_info.currency_symbol }}{{cost|floatformat:2}} {{ user_info.currency_code }} More
    Gross monthly consumption as of today: {{ user_info.currency_symbol }}{{total_cost|floatformat:2}} {{ user_info.currency_code }}
    TOP Destinations from last 7 days
    {% for l in locales %} {% endfor %}
    Country Destination Cost
    {{ l.country.name }} {{ l.destination_name }} {{ user_info.currency_symbol }}{{l.cost|floatformat:2}} {{ user_info.currency_code }}
    TOP users from last 7 days
    {% for e in extensions%} {% endfor %}
    Extension Name Cost
    {{e.extension_number}} {{e.name}} {{ user_info.currency_symbol }}{{e.cost|floatformat:2}} {{ user_info.currency_code }}
    Monthly Call Costs
    Costs by Billing Period
    {% endblock %} {% block js %} {{ block.super }} {% endblock %}