{% extends "coprs/detail.html" %} {% block title %}Modules for {{ copr.full_name }}{% endblock %} {% from "coprs/detail/_modules_table.html" import modules_table with context %} {% from "coprs/detail/_module_states.html" import module_states with context %} {% set selected_tab = "modules" %} {%block project_breadcrumb %}
  • Modules
  • {%endblock%} {% block detail_body %} {% if g.user and g.user.can_build_in(copr) %} New Module {% endif %}

    Project Modules

    {% if modules %} {{ modules_table(modules) }} {{ module_states() }} {% else %}

    No Modules in This Project

    Click on the New Module button to build your first module.

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