{% extends "coprs/detail.html" %} {% from "_helpers.html" import render_pagination, copr_name %} {% from "coprs/detail/_packages_table.html" import packages_table with context %} {% from "coprs/detail/_build_states.html" import build_states %} {% block title %}Packages for {{ copr_name(copr) }}{% endblock %} {% set selected_tab = "packages" %} {%block project_breadcrumb %}
  • Packages
  • {%endblock%} {% block detail_body %} {% if g.user and g.user.can_edit(copr) %} New package {% endif %} {% if g.user and g.user.can_build_in(copr) %} Rebuild all {% endif %}

    Project Packages

    {% if packages %} {{ packages_table(packages) }} {{ build_states() }} {% else %}

    No Packages in This Project

    Packages can be used to create automatic builds from your git repository. To do this, create a new package and fill in its default source.

    {% if g.user and g.user.can_edit(copr) %}
    Create a New Package
    {% endif %}
    {% endif %} {% endblock %}