{% extends "coprs/detail.html" %} {% from "_helpers.html" import copr_url %} {% from "coprs/detail/_describe_source.html" import describe_source %} {% from "coprs/detail/_builds_table.html" import builds_table with context %} {% block title %}Package {{ package.name }} in {{ package.copr.owner.name }}/{{ package.copr.name }}{% endblock %} {%block project_breadcrumb %}
  • Packages
  • {{package.name}}
  • {%endblock%} {% block detail_body %} {% macro controls() %}
    Edit {% if package.source_type %} Rebuild {% endif %}
    {% endmacro %}

    Package: {{ package.name }}

    {% if package.dist_git_url %}
    Dist Git Repo:
    {{package.dist_git_repo}}
    {% endif %}

    Default source

    Controls:
    {{ controls() }}
    {{ describe_source(package) }}

    Recent Builds:

    {{builds_table(package.builds)}}
    {% endblock %}