{% extends "base.html" %} {% block title %}Connections - S3 Compatible Storage{% endblock %} {% block content %}
Add New Connection

Connect to an S3-compatible endpoint

Existing Connections

Configured remote endpoints

{% if connections %}
{% for conn in connections %} {% endfor %}
Name Endpoint Region Access Key Actions
{{ conn.name }}
{{ conn.endpoint_url }} {{ conn.region }} {{ conn.access_key[:8] }}...{{ conn.access_key[-4:] }}
{% else %}
No connections yet

Add your first remote connection to enable bucket replication.

{% endif %}
{% endblock %}