{% 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%}
{{prov.name}} |
{{ user_info.currency_symbol }}{{cost|floatformat:2}} {{ user_info.currency_code }} |
More |
{% endfor %}
Gross monthly consumption as of today: {{ user_info.currency_symbol }}{{total_cost|floatformat:2}} {{ user_info.currency_code }}
TOP Destinations from last 7 days
Country |
Destination |
Cost |
{% for l in locales %}
{{ l.country.name }} |
{{ l.destination_name }} |
{{ user_info.currency_symbol }}{{l.cost|floatformat:2}} {{ user_info.currency_code }} |
{% endfor %}
TOP users from last 7 days
Extension |
Name |
Cost |
{% for e in extensions%}
{{e.extension_number}} |
{{e.name}} |
{{ user_info.currency_symbol }}{{e.cost|floatformat:2}} {{ user_info.currency_code }} |
{% endfor %}
{% endblock %}
{% block js %}
{{ block.super }}
{% endblock %}