{% extends "pinsets.html" %} {% load staticfiles %} {% block css %} {{ block.super }} {% endblock %} {% block title %} Pinsets {% endblock %} {% block page-title %}
  • General
  • {% 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" }}
    Average monthly cost by pinset is {{ user_info.currency_symbol }}{{average | floatformat:"2"}} {{ user_info.currency_code }}
    {% if pinsets %}

    Most costly Pinsets

    {% for pin in pinsets%} {% endfor %}
    Pinset Cost ({{ user_info.currency_code }})
    {{pin.pinset_number}} {{ user_info.currency_symbol }}{{pin.cost | floatformat:"2"}}
    {% else %}
    There are no registered calls in this time period.
    {% endif %}
    {% if all_pinsets %}
    {% for pin in all_pinsets %} {% endfor %}
    Pinset Total Seconds Total Calls Period Total ({{ user_info.currency_code }}) Detail
    {{pin.pinset.pinset_number}} {{pin.seconds}} {{pin.calls}} {{ user_info.currency_symbol }}{{pin.cost | floatformat:"2"}} {% if last_month %} More {% else %} More {% endif %}
    {% else %}
    There are no registered calls up to this moment
    {% endif %}
    {% endblock %} {% block js %} {{ block.super }} {% endblock %}