{% extends "coprs/detail.html" %} {% block title %}Builds for {{ copr.full_name }}{% endblock %} {% from "_helpers.html" import render_pagination %} {% from "coprs/detail/_builds_table.html" import builds_table with context %} {% from "coprs/detail/_build_states.html" import build_states %} {% set selected_tab = "builds" %} {%block project_breadcrumb %}
  • Builds
  • {%endblock%} {% block detail_body %} {% if g.user and g.user.can_build_in(copr) %} New Build {% endif %}

    Project Builds

    {% if builds %} {{ builds_table(builds) }} {{ build_states() }} {% else %}

    No Builds in This Project

    Click on the New Build button to submit your first build.

    You can also set up automatic builds directly from your git. This can be done on the Packages view.

    {% if g.user and g.user.can_build_in(copr) %}
    Submit a New Build
    {% endif %}
    {% endif %} {% endblock %}