{% extends "zerver/base.html" %} {% load compressed %} {% load minified_js %} {# User Activity. #} {% block customhead %} {{ block.super }} {% minified_js 'activity' %} {% compressed_css 'activity' %} {% endblock %} {% block content %}
{% for name, activity in data.iteritems %}

{{ name }} usage

{% if activity.has_pointer %} {% endif %} {% for email, row in activity.sorted_rows %} {% if activity.has_pointer %} {% endif %} {% endfor %}
Name Email Realm Last send_message Messages sentLast update_pointer Pointer updatesLast get_updates
{{ row.full_name }} {{ row.email }} {{ row.realm }} {{ row.send_message_last|date:"M d, H:i" }} {{ row.send_message_count }}{{ row.update_pointer_last|date:"M d, H:i" }} {{ row.update_pointer_count }}{{ row.get_updates_last|date:"M d, H:i" }}
{% endfor %}
{% endblock %}