{% extends "base.html" %} {% load surftrackr_extras %} {% load humanize %} {% block title %} Users {% endblock %} {% block javascript %} {% endblock %} {% block topbar %} {% include "topbar.html" %} {% endblock %} {% block messages %} {{ message|safe }} {% endblock %} {% block submenu %}
{% if draw_chart %}Row | User | Total | Per cent | ||
---|---|---|---|---|---|
{{ forloop.counter }} | {{ u }} | Sites ⇒ | URLs ⇒ | {% if u.total_bytes %} {{ u.total_bytes|intcomma }} {% endif %} {% if u.total_visits %} {{ u.total_visits|intcomma }} {% endif %} {% if u.total_sites %} {{ u.total_sites|intcomma }} {% endif %} | {% if u.percent_bytes %} {{ u.percent_bytes|intcomma }} {% endif %} {% if u.percent_visits %} {{ u.percent_visits|intcomma }} {% endif %} {% if u.percent_sites %} {{ u.percent_sites|intcomma }} {% endif %} |