{% extends "hostingpackages/base.html" %} {% load i18n %} {% block title %}{{ block.super }} - {% spaceless %} {% if user == customer %} {% trans "Your hosting packages" %} {% else %} {% blocktrans with customer=customer.get_full_name %}Hosting Packages of {{ customer }}{% endblocktrans %} {% endif %} {% endspaceless %}{% endblock title %} {% block page_title %}{% spaceless %} {% if user == customer %} {% trans "Your hosting packages" %} {% else %} {% blocktrans with customer=customer.get_full_name %}Hosting Packages of {{ customer }}{% endblocktrans %} {% endif %} {% endspaceless %}{% endblock page_title %} {% block content %} {% if customerhostingpackage_list %} {% for package in customerhostingpackage_list %} {% endfor %}
{% trans "Name" %} {% trans "Setup date" %}
{{ package.name }} {{ package.created }}
{% else %}

{% if user == customer %}{% trans "You have no hosting packages setup yet." %}{% else %}{% trans "There are no hosting packages setup for this customer yet." %}{% endif %}

{% endif %} {% if user.is_staff %}

{% trans "Add hosting package" %}

{% endif %} {% endblock content %}