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

Request Bucket Access

Request access to the shared bucket {{ bucket_name }}

Bucket Details

Bucket Name: {{ bucket_name }}

Workspace ID: {{ workspace_id }}

Access Request
{% csrf_token %} {{ form.bucket_name }} {{ form.workspace_project_id }}
{% for choice in form.requested_permissions.field.choices %}
{% if choice.0 == "read" %}

With read-only access, you can:

  • View and download files in the bucket
  • List contents of the bucket

You cannot upload, modify, or delete files.

{% elif choice.0 == "read_write" %}

With read and write access, you can:

  • View and download files in the bucket
  • Upload new files to the bucket
  • Modify or delete existing files
  • Create directories within the bucket
{% endif %}
{% endfor %}
Cancel
{% endblock %} {% block local_js_bottom %} {% endblock %}