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

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

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

{% translate "Add hosting package" %}

{% endif %} {% endblock content %}