{% extends "main.html" %}
{% load karaage_tags %}
{% load humanize filters %}
{% block title %}Software (stats){% endblock %}
{% block breadcrumbs %}
{% date_filter start end %}
Versions
Version |
CPU Time |
No. Jobs |
{% comment %}
Total |
{{ version_total.usage__sum|timeformat }} |
{{ version_totaljobs|intcomma }} |
{% endcomment %}
{% for version in version_stats|dictsortreversed:"usage" %}
{{ version }} |
{{ version.usage|timeformat }} |
{{ version.jobs|intcomma }} |
{% endfor %}
People
Person |
Institute |
CPU Time |
No. Jobs |
{% comment %}
Total |
{{ total|timeformat }} |
{{ total_jobs|intcomma }} |
{% endcomment %}
{% for person in person_stats|dictsortreversed:"p_usage" %}
{{ person }} |
{{ person.institute }} |
{{ person.p_usage|timeformat }} |
{{ person.jobs|intcomma }} |
{% endfor %}
Person Institutes
Institute |
CPU Time |
No. Jobs |
{% comment %}
Total |
{{ total|timeformat }} |
{{ total_jobs|intcomma }} |
{% endcomment %}
{% for institute in person_institute_stats|dictsortreversed:"i_usage" %}
{{ institute }} |
{{ institute.i_usage|timeformat }} |
{{ institute.jobs|intcomma }} |
{% endfor %}
Projects
Project |
Institute |
CPU Time |
No. Jobs |
{% comment %}
Total |
{{ total|timeformat }} |
{{ total_jobs|intcomma }} |
{% endcomment %}
{% for project in project_stats|dictsortreversed:"p_usage" %}
{{ project }} |
{{ project.institute }} |
{{ project.p_usage|timeformat }} |
{{ project.jobs|intcomma }} |
{% endfor %}
Project Institutes
Institute |
CPU Time |
No. Jobs |
{% comment %}
Total |
{{ total|timeformat }} |
{{ total_jobs|intcomma }} |
{% endcomment %}
{% for institute in project_institute_stats|dictsortreversed:"i_usage" %}
{{ institute }} |
{{ institute.i_usage|timeformat }} |
{{ institute.jobs|intcomma }} |
{% endfor %}
{% endblock %}