{% extends "base" %} {% import 'components/file' as files %} {% block title %}{{ config.name }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ config.name }} {% if meta.latest_build_status == "success" %} passing {% elif meta.latest_build_status == "failure" %} failing {% elif meta.latest_build_status == "running" %} running {% elif meta.latest_build_status == "pending" %} pending {% endif %}

{% if config.description %}

{{ config.description }}

{% endif %}
{% include 'components/file_tree' %} {% include 'components/sidebar' %}
{% endblock %}