{% extends "base.html" %} {% block content %}

{{ app.name.title() }}

{% for test in tests %} {% endfor %} {% for result in branch_results %} {% for test in tests %} {% set r = result.results[test] %} {% endfor %} {% endfor %}
Level
{{ test }}
{{ result.branch.display_name }}
{{ result.level if result.level >= 0 else "?" }}
{% if result.date == None %} ??? {% else %} {% endif %} {% if result.outdated %} {% endif %}


{% if app.testing_pr %}

A testing PR is open for this app.

{% else %}

No active testing branch for this app.

{% endif %} {% if app.opened_issues > 0 %}

There are {{ app.opened_issues }} opened issues for this app.

{% else %}

No issues opened for this app !

{% endif %} {% if app.opened_prs > 0 %}

There are {{ app.opened_prs }} opened pull requests for this app.

{% else %}

There are no pull requests opened.

{% endif %}
{% endblock %}