{% extends 'services/base.html' %} {% block content %}
{% if offering.service.logo %} {{ offering.service.name }} logo {% endif %}

{{ offering.service.name }}

on {{ offering.cloud_provider.name }}

{% if offering.cloud_provider.logo %} {{ offering.cloud_provider.name }} logo {% endif %}
{{ offering.description|safe }}

Available Plans

{% for plan in offering.plans.all %}
{% if plan.is_default %}
Recommended Plan
{% endif %}

{{ plan.name }}

{{ plan.description|safe }}
{% if plan.features %}
{{ plan.features|safe }}
{% endif %}
{% for price in plan.prices.all %}
{{ price.currency.symbol }}{{ price.price }} {{ price.currency.code }} per {{ price.term.name }}
{% endfor %}
Select This Plan
{% empty %}
No plans available yet. Show Interest
{% endfor %}
{% endblock %}