{% extends "base.html" %} {% load surftrackr_extras %} {% load humanize %} {% block title %} Front Page {% endblock %} {% block topbar %} {% include "topbar.html" %} {% endblock %} {% block messages %} {{ message }} {% endblock %} {% block submenu %}

Welcome to Surftrackr

{% if show_auth %} {% endif %}
Logged-in user {{ duser_obj }}
Total web addresses {{ weblogs|intcomma }} rows
Total websites {{ websites|intcomma|apnumber|capfirst }}
Users {{ users|intcomma|apnumber|capfirst }}
Workstations {{ workstations|intcomma|apnumber|capfirst }}
Lexicons {{ lexicons|intcomma|apnumber|capfirst }}
HiLites {{ hilites|intcomma|apnumber|capfirst }}
Flagged web addresses {{ flagged_weblogs|intcomma|apnumber|capfirst }}
Flagged users {{ flagged_users|intcomma|apnumber|capfirst }}
Rows to return {{ row_limit|intcomma|apnumber|capfirst }}
From: {{ range_form.start_date }}   To: {{ range_form.end_date }}  

Dates should be in the form '2008-01-03 12:34:00' but many free-form dates will also work, eg '3 Jan 2008 12:34pm'.

Go back {% for t in time_buttons %} {% endfor %}

{% if range_form.start_date.errors %}

"From" date: {% for error in range_form.start_date.errors %} {{ error }}
{% endfor %}

{% endif %} {% if range_form.end_date.errors %}

"To" date: {% for error in range_form.end_date.errors %} {{ error }}
{% endfor %}

{% endif %} {% if error_message %}

Problem: {{ error_message }}

{% endif %}
{% endblock %} {% block extras %}
{% include "bottombar.html" %}
{% endblock %}