{% extends 'services/base.html' %} {% block content %}

Service Offerings

Explore our available service offerings

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

{{ offering.service.name }}

{% if offering.cloud_provider.logo %} {{ offering.cloud_provider.name }} {% else %} {{ offering.cloud_provider.name }} {% endif %}
{% for category in offering.service.categories.all %} {{ category.full_path }} {% endfor %}
{{ offering.description|safe|truncatewords_html:30 }}
{% empty %}
No service offerings found matching your criteria.
{% endfor %}
{% endblock %}