{% extends "master.html" %} {% from "_formhelpers.html" import render_field_in_row %} {% block title %} Update action | PkgDB {% endblock %} {%block tag %}{% if tag %}{{ tag }}{% else %}admin{% endif %}{% endblock %} {% block content %} {% if package %}

Update request: {{ admin_action.id }}

{% else %}

Update admin action: {{ admin_action.id }}

{% endif %} {% if package %}

As current admin of the package {{ package.name }} you have the possibility for 7 days to block a branch request for EPEL branches.

{% endif %} {% if tag %} {% if admin_action.action != 'request.package' %}

During the 7 days following the request, you can 'Block' the new branch process by setting the request to Blocked or 'Approve' it by setting it to Awaiting Review to inform admins that they can now review this request.

{% endif %}
{% else %} {% endif %} {% if is_admin %}

Updating the status of a request does not process the request. The proper way to process requests is via the pkgdb-admin CLI tool.

{% endif %} {% if admin_action.action == 'request.package' or admin_action.action == 'request.unretire' %} {% endif %} {{ render_field_in_row(form.status) }} {{ render_field_in_row( form.message, placeholder='Required if the action is blocked or denied') }}
User:{{ admin_action.user }}
Package: {% if admin_action.package %} {{ admin_action.package.name }} {% else %} {{ admin_action.info_data['pkg_name'] }} {% endif %}
Action:{{ admin_action.action }}
To branch:{{ admin_action.collection.branchname }}
Ticket {{ admin_action.info_data['pkg_review_url'] }}
Monitoring status {{ admin_action.info_data.get('monitoring_status', 'True') }}
Koschei integration {{ admin_action.info_data.get('koschei', 'False') }}

{{ form.csrf_token }}

{% endblock %}