{% extends "monitor_repos_layout.html" %} {% block body %} {% for repo in repos %}

{{ repo.title().replace('-', '') }}

Branches

{% for branch in branches %}
{{ branch.title() }}
{{ repo }} - {{ branch }}
{% endfor %}

Activity

{% for activity, threshold in thresholds.items() %}
{{ activity.title() }}
{% endfor %}

Deploy Lag

{% for branch in branches_deployable %}
{{ branch.title() }}
{% endfor %}
{% endfor %} {% endblock %}