{% extends "base.html" %} {% from "_macros.html" import empty %} {% block title %}Object storage ยท mgf-cloud-web{% endblock %} {% block content %}
{% if containers %}
{% for c in containers %} {% endfor %}
ContainerObjectsBytes
{{ c.name }} {{ c.object_count }} {{ c.bytes }}
{% else %} {{ empty("No containers.", "Create a container to store objects.") }} {% endif %}
{% endblock %}