{% extends "base.html" %} {% load i18n %} {% block title %}{{ block.super }} - {% blocktrans with full_name=dashboard_user.get_full_name %}Dashboard for {{ full_name }}{% endblocktrans %}{% endblock title %} {% block page_title %}{% blocktrans with full_name=dashboard_user.get_full_name %}Dashboard for {{ full_name }}{% endblocktrans %}{% endblock page_title %} {% block content %}
{% trans "Name" %} | {% trans "Disk space" %} | {% trans "Mailboxes" %} | {% trans "Databases" %} | {% trans "Actions" %} |
---|---|---|---|---|
{{ package.name }} | {% with diskspace=package.get_disk_space %} {{ diskspace|filesizeformat }} {% endwith %} | {% blocktrans with num=package.used_mailbox_count total=package.mailbox_count %}used {{ num }} of {{ total }}{% endblocktrans %} | {% 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 %} |
{% if user == object %}{% trans "You have no hosting packages yet." %}{% else %}{% trans "This user has no hosting packages assigned yet." %}{% endif %}
{% endif %} {% if user.is_staff %} {% trans "Add hosting package" %} {% endif %}