{% extends "hostingpackages/base.html" %} {% load i18n %} {% block title %}{{ block.super }} - {% translate "All hosting packages" %}{% endblock title %} {% block page_title %}{% translate "All hosting packages" %}{% endblock page_title %} {% block content %} {% if customerhostingpackage_list %} {% for package in customerhostingpackage_list %} {% endfor %}
{% translate "Name" %} {% translate "Customer" %} {% translate "OS User" %} {% translate "Disk space" %} {% translate "Mailboxes" %} {% translate "Databases" %} {% translate "Setup date" %}
{{ package.name }} {{ package.customer }} {{ package.osuser.username }} {% with diskspace=package.get_disk_space %} {{ diskspace|filesizeformat }} {% endwith %} {% blocktranslate with num=package.used_mailbox_count total=package.mailbox_count trimmed %} used {{ num }} of {{ total }} {% endblocktranslate %} {% for dbtype in package.get_databases %} {{ dbtype.number }} {% include "userdbs/snippets/db_type.html" with db_type=dbtype.db_type %} {% if not forloop.last %} / {% endif %} {% endfor %} {{ package.created }}
{% else %}

{% translate "No hosting packages have been setup yet." %}

{% endif %}

{% translate "Add hosting package" %}

{% endblock content %}