{% extends "coprs/detail.html" %} {% block title %}Permissions for {{ copr.owner.name }}/{{ copr.name }}{% endblock %} {% block permissions_selected %}active{% endblock %} {% from "coprs/detail/_permissions_table.html" import permissions_table with context%} {%block project_breadcrumb %}
  • Permissions
  • {%endblock%} {% block detail_body %}

    Project Permissions

    This view shows permissions of other users to build or manage this project.

    {% if (g.user and g.user != copr.owner) or permissions %} {# the table is displayed only if there are some permissions or a non-owner is viewing the page (then display at least his applier form #} {{ permissions_table(permissions, current_user_permissions, copr, permissions_applier_form, permissions_form) }} {% else %}

    No permissions yet

    You could not grant permission directly. First the other user have to navigate to this project and open this tab. Then he can apply for permission. You will then receive email. Once you return to this page you can either approve or reject this request.

    {% endif %} {% endblock %}