{% extends "hostingpackages/base.html"%} {% load i18n %} {% block title %}{{ block.super }} - {% blocktrans with package=hostingpackage.name full_name=customer.get_full_name %}Choose new Option for Hosting Package {{ package }} of Customer {{ full_name }}{% endblocktrans %}{% endblock title %} {% block page_title %}{% blocktrans with package=hostingpackage.name full_name=customer.get_full_name %}Choose new Option for Hosting Package {{ package }} of Customer {{ full_name }}{% endblocktrans %}{% endblock page_title %} {% block content %}
{% for label, items in hosting_options %}
{{ label }}
    {% for item, option_type in items %}
  • {{ item }}
  • {% endfor %}
{% endfor %}
{% endblock %}