{% extends "base.html" %} {% block title %}Storage Providers - Art-DAG L1{% endblock %} {% block content %}

Storage Providers

Configure your IPFS pinning services. Data is pinned to your accounts, giving you full control.

{% for key, info in providers_info.items() %}
{{ info.name }} {% set count = storages | selectattr('provider_type', 'equalto', key) | list | length %} {% if count > 0 %} {{ count }} configured {% endif %}

{{ info.desc }}

{% endfor %}
{% if storages %}

Your Storage Providers

{% for storage in storages %} {% set info = providers_info.get(storage.provider_type, {'name': storage.provider_type, 'color': 'gray'}) %}
{{ storage.provider_name or info.name }} {% if storage.is_active %} Active {% else %} Inactive {% endif %}
Capacity: {{ storage.capacity_gb }} GB
Used: {{ (storage.used_bytes / 1024 / 1024 / 1024) | round(2) }} GB
Pins: {{ storage.pin_count }}
{% endfor %}
{% else %}

No storage providers configured yet.

Click on a provider above to add your first one.

{% endif %}
{% endblock %}