{% extends "ci_dashboard/base.html" %} {% load helpers %} {% load rulecheck_link_to_ci %} {% block title %} | Status Details {% endblock %} {% block content %}

Status Overview

{{ status_detail.status_text }}

{{ status_detail.ci_system.name }}

{{ status_detail.updated_at|timesince }}

{{ status_detail.summary }}

{% if status_detail.description %}

{{ status_detail.description }}

{% endif %} {% if status_detail.rule_checks %}
    {% for rule_check in status_detail.rule_checks|sorted_by_rule_name %}
  • {{ rule_check.rule.rule_type_text }} {{ rule_check.rule.name }} #{{ rule_check.build_number }}:

    {{ rule_check.status_text }}{% if rule_check.running %} ({{rule_check.running}} in progress){%endif%}
    • {% rulecheck_link_to_ci rule_check %}
    • {% if rule_check.last_successfull_build_link %} |
    • Last Successfull Build
    • {% endif %} {% if rule_check.last_failed_build_link %} |
    • Last Failed Build
    • {% endif %}
  • {% endfor %}
{% else %}
No rules were checked..
{% endif %}
    {% if user.is_authenticated and user.is_active and user|can_manage_statuses %}
  • Edit
  • Delete
  • Return to Dashboard
  • {% endif %}
  • Manual: {{ status_detail.is_manual }} | Updated by: {{ status_detail.author_username }}
{% endblock %}