{% extends 'services/base.html' %} {% block content %} {% if service.logo %} {% endif %} {% if service.highlights.exists %} Highlights {% for highlight in service.highlights.all %} {{ highlight.name }} {% endfor %} {% 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 %} {% 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 %} {% if offering.status == 'available' %} Order Now {% elif offering.status == 'planned' %} Show Interest {% else %} Request Information {% endif %} {% empty %} No offerings available yet. Show Interest {% endfor %} {% endblock %}
{{ offering.description|safe|truncatewords_html:50 }}