{% extends "pinsets.html"%} {% load staticfiles %} {% block css %} {{ block.super }} {% endblock %} {% block title %}Pinset Analytics{% endblock %} {% block page-title %}
  • Pinset {{pinset.pinset_number}} Analytics
  • {% endblock %} {% block content %}
    {% if custom %} This Month {% else %} {% if last_month %} This Month {% else %} Last Month {% endif %} {% endif %} Custom Current period: {{ start_date | date:"d/M/Y" }} - {{ end_date | date:"d/M/Y" }}

    Pinset {{pinset.pinset_number}} monthly behavior

    {% if top_calls %}
    TOP 10 MOST EXPENSIVE DIALED NUMBERS OF THE MONTH
    {% for call in top_calls%} {% endfor %}
    Destination Total Calls Seconds Cost {{ user_info.currency_code }}
    {{call.dialed_number}} {{call.times_dialed}} {{call.duration}} {{ user_info.currency_symbol }}{{call.cost | floatformat:"2"}}
    {% else %}
    There are no registered calls in this time period.
    {% endif %}

    Detailed Usage

    {% if all_calls %}
    {% for call in all_calls%} {% endfor %}
    Date Time Destination Minutes Cost {{ user_info.currency_code }} Dialed Number
    {{call.dat}} {{call.time}} {{call.name}} {{call.duration}} {{ user_info.currency_symbol }}{{call.cost | floatformat:"2"}} {{call.dialed_number}}
    {% else %}
    There are no registered calls up to this moment
    {% endif %}
    {% endblock %} {% block js %} {{ block.super }} {% endblock %}