{% extends 'services/base.html' %} {% block content %}
Filters
Clear
{% for offering in offerings %}
{% if offering.service.logo %} {{ offering.service.name }} {% endif %}
{{ offering.service.name }}
{% if offering.cloud_provider.logo %} {{ offering.cloud_provider.name }} {% endif %} {{ offering.cloud_provider.name }}
{% for category in offering.service.categories.all %} {{ category.full_path }} {% endfor %}
{{ offering.description|safe|truncatewords_html:30 }}
{% if offering.plans.exists %}
Available Plans:
    {% for plan in offering.plans.all %}
  • • {{ plan.name }}
  • {% endfor %}
{% endif %}
View Details {% if offering.plans.exists %} {% if offering.status == 'available' %} {% if offering.plans.count == 1 %} {% with plan=offering.plans.first %} Order {% endwith %} {% else %} {% endif %} {% elif offering.status == 'planned' %} Show Interest {% else %} Request Information {% endif %} {% else %} {% if offering.status == 'available' %} Order {% elif offering.status == 'planned' %} Show Interest {% else %} Request Information {% endif %} {% endif %}
{% empty %}
No service offerings found matching your criteria.
{% endfor %}
{% endblock %}