{% extends "users.html" %} {% load staticfiles %} {% block css %} {{ block.super }} {% endblock %} {% block title %} Users {% 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 user is {{ user_info.currency_symbol }}{{average | floatformat:"2"}} {{ user_info.currency_code }}
    {% if extensions %}

    Most expensive users

    {% for ext in extensions%} {% endfor %}
    Extension Name Cost ({{ user_info.currency_code }})
    {{ext.extension_number}} {{ext.name}} {{ user_info.currency_symbol }}{{ext.cost | floatformat:"2"}}
    {% else %}
    There are no registered calls in this time period.
    {% endif %}
    {% if all_users %}
    {% for user in all_users %} {% endfor %}
    Name Extension Total Seconds Total Calls Period Total ({{ user_info.currency_code }}) Detail
    {{user.extension.name}} {{user.extension.extension_number}} {{user.seconds}} {{user.calls}} {{ user_info.currency_symbol }}{{user.cost | floatformat:"2"}} {% if last_month %} More {% else %} More {% endif %}
    {% else %}
    There are no registered calls in this time period.
    {% endif %}
    {% endblock %} {% block js %} {{ block.super }} {% endblock %}