{% extends 'base.html' %} {% load static %} {% block title %}Managed {{ offering.service.name }} on {{ offering.cloud_provider.name }}{% endblock %} {% block content %}

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

Details about {{ offering.service.name }} managed by VSHN on {{ offering.cloud_provider.name }}

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

Managed by

VSHN logo

Runs on

{{ offering.cloud_provider.name }} logo
{% if offering.external_links.exists %}

External Links

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

Consulting Partners

If you want to get the most out of your managed {{ offering.service.name }}, our consulting partners can help you optimize your setup and application:

{% endif %}

Managed {{ offering.service.name }}

{% for category in offering.service.categories.all %} {% endfor %}
{% if offering.short_description %}
{{ offering.short_description|safe }}
{% endif %}
{% if offering.service.description %}

Service Overview

{{ offering.service.description|safe }}
{% endif %} {% if offering.offer_description or offering.description %}

Offering

{% if offering.description %}
{{ offering.description|safe }}
{% endif %} {% if offering.offer_description %}
{{ offering.offer_description.get_full_text|safe }}
{% endif %}
{% endif %} {% if offering.plans.all %}

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 %}
{% 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 %}
{% else %}

I'm interested in this offering

{% load contact_tags %} {% embedded_contact_form source="Offering Interest" service=offering.service offering_id=offering.id %}
{% endif %} {% if offering.plans.exists %}

I'm interested in a plan

{% load contact_tags %} {% embedded_contact_form source="Plan Order" service=offering.service offering_id=offering.id choices=offering.plans.all choice_label="Select a Plan" %}
{% endif %}
{% endblock %}