{% extends 'base.html' %} {% load static %} {% block title %}Attach Bucket to Project{% endblock %} {% block local_css %} {% endblock %} {% block content %}
{% include "message_snippet.html" %}

Attach Bucket to Project

Associate the bucket {{ bucket_name }} with a project for easier access management.

Bucket Details

Bucket Name: {{ bucket_name }}

Workspace ID: {{ workspace_id }}

Select Project
{% if form.project.field.queryset.exists %}
{% csrf_token %} {{ form.bucket_name }} {{ form.workspace_id }}
{{ form.project }}
Cancel
{% else %}

You don't have any projects available for attachment. Possible reasons:

  • You don't have access to any projects
  • All your accessible projects already have buckets attached to them

Please create a new project or detach an existing bucket from a project first.

{% endif %}
{% endblock %}