{{project.nick}} |
{% with repository = 'standard' %}
{% include "repository.html" %}
{% endwith %}
|
{% with repository = 'images' %}
{% include "repository.html" %}
{% endwith %}
|
{% if project.ttm_version %}
{{ project.ttm_version }}
{% else %}
n.a.
{% endif %}
|
{% set ttm_testing = project.ttm_status.get('testing') %}
{% if ttm_testing %}
{% if project.openqa_version %}
{{ ttm_testing }}
{% else %}
{{ ttm_testing }}
{% endif %}
{% else %}
n.a.
{% endif %}
|
{% set ttm_published = project.ttm_status.get('published', None) %}
{% if ttm_published %}
{{ ttm_published }}
{% else %}
n.a.
{% endif %}
|
{% set openqa_summary = project.openqa_summary() %}
{% for state in openqa_summary.keys() %}
{{ state }}: {{ openqa_summary[state]|length }}
{% endfor %}
|
{% endfor %}