{% 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 admin_action.action == 'request.package' %} {% 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'] }}

{{ form.csrf_token }}

{% endblock %}