{% extends 'services/base.html' %} {% block content %}
Filters
Clear
{% for service in services %}
{% if service.logo %} {{ service.name }} logo {% endif %}
{{ service.name }}
{% if service.cloud_provider.logo %} {{ service.cloud_provider.name }} logo {% endif %}
{{ service.cloud_provider.name }}

{{ service.description|safe|truncatewords:30 }}

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

Service Level: {{ service.service_level.name }}
Price: ${{ service.price }}

View Details
{% empty %}
No services found matching your criteria.
{% endfor %}
{% endblock %}