{% extends "radius/base.html" %} {% load radius %} {% block content %}
{% csrf_token %} {{ form.days }} {{ form.days.label_tag }} {{ form.charts }}
{% for table in tables %} {% for row in table.1 %} {# TODO: Search #} {% endfor %}
{{ table.0 }}
Pos. Username Transferred Time
{{ forloop.counter }}{{ row.username|default:"" }} {{ row.sortfield|filesizeformat }} {{ row.acctsessiontime|time_from_seconds }}
{% empty %}
Radius accounting chart information

"There are three types of lies - lies, damn lies, and statistics."

We get transfer data from sessions that have ended, and where we received an explicit Stop message. These charts show transfer data for all sessions that ended during the specified time period, so the data could actually have been transferred before this period.

{% endfor %} {% endblock content %}