{% extends "base.html" %} {% load i18n %} {% load dateconv %} {% block content %}
{% include "messages.html" %} {% for container in containers %} {% empty %} {% endfor %}
{% trans 'Name' %} {% trans 'Objects' %} {% trans 'Size' %}
{{container.name}} {{container.count}} {{container.bytes|filesizeformat}}
{% trans 'There are no containers in this account yet. Create a new container by clicking the red button.' %}
{{account_stat.x_account_bytes_used|filesizeformat}} {% if account_stat.x_account_meta_quota_bytes %} {% trans 'of' %} {{account_stat.x_account_meta_quota_bytes|filesizeformat}} {% endif %} {% trans 'used' %}
{% endblock %}