{% extends 'base.html' %} {% load static %} {% block title %}Pending Bucket Access Requests{% endblock %} {% block local_css %} {% endblock %} {% block content %}
{% include "message_snippet.html" %}

Pending Bucket Access Requests

Manage requests from users who want to access your shared buckets.

{% if pending_requests %} {% for request in pending_requests %}
Request from {{ request.accessor_email }} {% if request.requested_permissions == "read" %} Read Only {% elif request.requested_permissions == "read_write" %} Read and Write {% endif %}

Bucket Name: {{ request.bucket_name }}

Request ID: {{ request.request_id }}

{% endfor %} {% else %}

No Pending Requests

You don't have any pending access requests for your shared buckets.

{% endif %}
Back to Environments
{% endblock %} {% block local_js_bottom %} {% endblock %}