{% extends 'base.html' %} {% load static %} {% load project_templatetags %} {% block local_css %} {% endblock %} {% block title %}Manage Shared Bucket{% endblock %} {% block content %}

Manage Shared Bucket

Shared Bucket Details
Bucket Name: {{ shared_bucket_name }}
New Share
{% csrf_token %} {{ bucket_sharing_form }}
Pending Shares
  • E-Mail
    Actions
  • {% for share in pending_shares %}
  • {{ share.user_contact_email }}
    {% csrf_token %}
  • {% endfor %}
Active Shares
  • E-Mail
    Actions
  • {% for share in consumed_shares %}
  • {{ share.user_contact_email }}
    {% csrf_token %}
  • {% endfor %}
{% include "environment/shared_bucket_files.html" %}
{% endblock %}