{% extends 'services/base.html' %} {% block title %}{{ offering.service.name }} on {{ offering.cloud_provider.name }}{% endblock %} {% block content %}

Service Offering

{{ offering.service.name }} on {{ offering.cloud_provider.name }}

{% if offering.service.logo %} {{ offering.service.name }} logo {% endif %}
{% if offering.external_links.exists %}

External Links

{% endif %} {% if offering.service.consulting_partners.exists %}

Consulting Partners

{% endif %}
{% if offering.cloud_provider.logo %}

{{ offering.cloud_provider.name }} logo

{% endif %}

{{ offering.service.name }}

{% for category in offering.service.categories.all %} {% 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 This Plan

{% load contact_tags %} {% embedded_contact_form source="Plan Order" service=offering.service offering_id=offering.id plan_id=plan.id %}
{% empty %}

No plans available yet.

I'm interested in this offering

{% load contact_tags %} {% embedded_contact_form source="Offering Interest" service=offering.service offering_id=offering.id %}
{% endfor %}
{% endblock %}