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

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

{% if package.config.description %}

{{ package.config.description }}

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