{% extends "base.html" %} {% load i18n %} {% load static %} {% comment %} layerindex-web - statistics page template Copyright (C) 2018 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block content %} {% autoescape on %}

Statistics

Overall

Layers
{{ layercount }}
Recipes
{{ recipe_count_distinct }} (distinct names)
Machines
{{ machine_count_distinct }} (distinct names)
Classes
{{ class_count_distinct }} (distinct names)
Distros
{{ distro_count_distinct }} (distinct names)

Per branch

{% for branch in perbranch %} {% endfor %}
Branch Layers Recipes Machines Classes Distros
{{ branch.name }} {{ branch.layer_count }} {{ branch.recipe_count }} {{ branch.machine_count }} {{ branch.class_count }} {{ branch.distro_count }}
{% endautoescape %} {% endblock %}