{% extends 'traffic/realtime/index.html' %}
{% load l10n %}
{% block tab_users %}class="active"{%endblock%}
{% block tab_content %}
{% if error_text %}
ERROR! {{error_text}}
{{traceback}}
{% endif %}
User Name |
User IP |
Total Hits |
{% for row in top_n_browsing.itertuples %}
{{row.user_name}} |
{{row.user_ip}} |
{{row.count}} |
{% empty %}
No records found |
{% endfor %}
User Name |
User IP |
Blocked Hits |
{% for row in top_n_blocked.itertuples %}
{{row.user_name}} |
{{row.user_ip}} |
{{row.count}} |
{% empty %}
No records found |
{% endfor %}
{% endblock %}