{% extends "ci/ci_layout.html" %} {% load dashboard_extras %} {% load ci_extras %} {% load percentage %} {% block page_name %}Daily release status for {% if show_filter %}{{ show_filter }}{% else %}all stacks{% endif %}{% endblock %} {% block content %}

{% if show_filter %} Daily release status (stack: {{ show_filter }}) {% else %} Daily release status (all stacks) {% endif %}

{% for stack in stack_list %} {% if stack.status %} {% endif %} {% endfor %}
Name Publish Status Last Build Last Publish
{{ stack.name }} {{ stack.status }} {{ stack.last_build.timestamp }} {{ stack.last_publish }}
{% endblock %}