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

Highlights

{% endif %}

Categories

{% for category in service.categories.all %} {{ category.full_path }} {% endfor %}

{{ service.name }}

by {{ service.provider.name }}

{{ service.short_description|safe }}

Overview

{{ service.description|safe }}
{% if service.features %}

Features

{{ service.features|safe }}
{% endif %}

Available Offerings

{% for offering in service.offerings.all %}
{% if offering.cloud_provider.logo %} {{ offering.cloud_provider.name }} {% endif %}

{{ offering.description|safe|truncatewords_html:50 }}

{% for plan in offering.plans.all %}

{{ plan.name }}

    {% for price in plan.prices.all %}
  • {{ price.currency.symbol }}{{ price.price }} {{ price.currency.code }} per {{ price.term.name }}
  • {% endfor %}
{% endfor %}
{% empty %}
No offerings available yet. Show Interest
{% endfor %}
{% endblock %}