{% extends "hostingpackages/base.html" %} {% load i18n %} {% block title %}{{ block.super }} - {% trans "All hosting packages" %}{% endblock title %} {% block page_title %}{% trans "All hosting packages" %}{% endblock page_title %} {% block content %} {% if customerhostingpackage_list %} {% for package in customerhostingpackage_list %} {% endfor %}
{% trans "Name" %} {% trans "Customer" %} {% trans "Setup date" %}
{{ package.name }} {{ package.customer }} {{ package.created }}
{% else %}

{% trans "There are no hosting packages setup yet." %}

{% endif %}

{% trans "Add hosting package" %}

{% endblock content %}