{% extends 'services/base.html' %} {% block title %}{{ offering.service.name }} on {{ offering.cloud_provider.name }}{% endblock %} {% block content %} {% if offering.service.logo %} {% endif %} {% if offering.external_links.exists %} External Links {% for link in offering.external_links.all %} {{ link.description }} {% endfor %} {% endif %} {% if offering.service.consulting_partners.exists %} Consulting Partners {% for partner in offering.service.consulting_partners.all %} {{ partner.name }} {% endfor %} {% endif %} {% if offering.cloud_provider.logo %} {% endif %} {{ offering.service.name }} {% for category in offering.service.categories.all %} {{ category.full_path }} {% endfor %} {{ offering.short_description|safe }} {% if offering.service.description %} Service Overview {{ offering.service.description|safe }} {% endif %} Offering {% if offering.description %} {{ offering.description|safe }} {% endif %} {% if offering.offer_description %} {{ offering.offer_description.get_full_text|safe }} {% endif %} Available Plans {% for plan in offering.plans.all %} {{ plan.name }} {% if plan.plan_description %} {{ plan.plan_description.text|safe }} {% endif %} {% if plan.description %} {{ plan.description|safe }} {% endif %} {% if plan.pricing %} {{ plan.pricing|safe }} {% endif %} Order Now {% empty %} No plans available yet. I'm interested in a plan {% endfor %} {% endblock %}
No plans available yet.