{% extends 'base.html' %} {% load static %} {% load contact_tags %} {% 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.msp == "VS" and pricing_data_by_group_and_service_level %}

Service Plans

{% for group_name, service_levels in pricing_data_by_group_and_service_level.items %}

{% comment %} Display group description from first available plan {% endcomment %} {% for service_level, pricing_data in service_levels.items %} {% if pricing_data and forloop.first %} {% with pricing_data.0 as representative_plan %} {% if representative_plan.compute_plan_group_description %}

{{ representative_plan.compute_plan_group_description }}

{% endif %} {% endwith %} {% endif %} {% if forloop.first %} {% comment %} Only show description for first service level {% endcomment %} {% endif %} {% endfor %} {% for service_level, pricing_data in service_levels.items %}

{{ service_level }}

{% if pricing_data %}
{% for row in pricing_data %} {% endfor %}
Compute Plan vCPUs RAM (GB) Currency Compute Price Service Price Total Price
{{ row.compute_plan }} {{ row.vcpus }} {{ row.ram }} {{ row.currency }} {{ row.compute_plan_price|floatformat:2 }} {{ row.sla_price|floatformat:2 }} {{ row.final_price|floatformat:2 }}
{% else %}

No pricing data available for {{ service_level }}.

{% endif %}
{% endfor %}
{% endfor %}
{% elif 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

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

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