{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %}

Storage Engines

{% if data.google_drive_url %}
Attach Google Drive
{% endif %} {% if data.dropbox_url %}
Attach Dropbox
{% endif %} {% if not data.has_s3 %}
Attach Amazon S3
{% endif %} {% for engine in data.engines %}
{% if engine.name == 's3' %}

Amazon S3

{% endif %} {% if engine.name == 'googledrive' %}

Google Drive

{% endif %} {% if engine.name == 'dropbox' %}

DropBox

{% endif %}
{{ engine.get_total_size(human=True) }} stored ({{ engine.get_total_items() }} items)

{% if engine.name == 's3' %}

Bucket Name: {{ engine.connection_data['bucket_name'] }}



{% endif %}
{% endfor %} {% endblock %}