{% from "pr-table.html" import pr_table with context %} {% extends "layout.html" %} {% block title %}CI{% endblock %} {% block head %} {% endblock %} {% block content %}

CI

{% for wb in watched_branches %}

{{ wb.branch }}

SHA: {% if wb.sha is not none %} {{ wb.sha }} {% else %} unknown {% endif %}
Deploy State: {% if wb.deploy_state is not none %} {{ wb.deploy_state }} {% endif %}
Deploy Batch: {% if wb.deploy_batch_id is not none %} {{ wb.deploy_batch_id }} {% endif %}
{% if not frozen_merge_deploy %}
{% else %}
{% endif %}

PRs

{% if wb.prs is not none %} {% if wb.prs|length > 0 %} {{ pr_table(wb, "prs", "prsSearchBar") }} {% else %} No PRs. {% endif %} {% else %} Unknown. {% endif %} {% endfor %}

Authorize SHA

{% endblock %}