{% 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.commit != result.app.master_commit %} {% endif %}


{% if app.public_commit == 'HEAD' %}

This app points to HEAD in {{ app.list.name }}.json !

{% elif app.public_commit == app.master_commit %}

Master commit is up to date with {{ app.list.name }}.json !

{% else %} {% if app.public_vs_master_time_diff > 60 %}

{% else %}

{% endif %} Commit is not up to date on {{ app.list.name }}.json !

{% 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 %}