{% extends "main.html" %} {% load karaage_tags %} {% load humanize filters %} {% block title %}Software Version (stats){% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% date_filter start end %}

People

{% comment %} {% endcomment %} {% for person in person_stats|dictsortreversed:"p_usage" %} {% endfor %}
Person Institute CPU Time No. Jobs
Total {{ total|timeformat }} {{ total_jobs|intcomma }}
{{ person }} {{ person.institute }} {{ person.p_usage|timeformat }} {{ person.jobs|intcomma }}

Person Institutes

{% comment %} {% endcomment %} {% for institute in person_institute_stats|dictsortreversed:"i_usage" %} {% endfor %}
Institute CPU Time No. Jobs
Total {{ total|timeformat }} {{ total_jobs|intcomma }}
{{ institute }} {{ institute.i_usage|timeformat }} {{ institute.jobs|intcomma }}

Projects

{% comment %} {% endcomment %} {% for project in project_stats|dictsortreversed:"p_usage" %} {% endfor %}
Project Institute CPU Time No. Jobs
Total {{ total|timeformat }} {{ total_jobs|intcomma }}
{{ project }} {{ project.institute }} {{ project.p_usage|timeformat }} {{ project.jobs|intcomma }}

Project Institutes

{% comment %} {% endcomment %} {% for institute in project_institute_stats|dictsortreversed:"i_usage" %} {% endfor %}
Institute CPU Time No. Jobs
Total {{ total|timeformat }} {{ total_jobs|intcomma }}
{{ institute }} {{ institute.i_usage|timeformat }} {{ institute.jobs|intcomma }}
{% endblock %}