{% 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 %}

Please select a graph-type:


{% if draw_chart %} {% for u in users_obj %} {% endfor %}
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 %}
{% endif %} {% endblock %}