Compare commits

..

No commits in common. "e82f563ca38c131c9edb2804b1863ab9937453c1" and "3f6fc4a86e49ec5ca0eae82fecc5e4c40256fadd" have entirely different histories.

View file

@ -32,8 +32,7 @@
<div class="mb-40">
<h3 class="fw-semibold mb-12">Cloud Providers</h3>
<ul class="list-unstyled space-y-12 fs-19 ps-0">
{% for offering in service.offerings.all|dictsort:"cloud_provider.order" %}
{% if not offering.cloud_provider.disable_listing %}
{% for offering in service.offerings.all %}
<li>
<a class="d-flex align-items-center text-gray-500 h-32 lh-32" href="{% url 'services:offering_detail' offering.cloud_provider.slug offering.service.slug %}">
<span class="pr-10">
@ -44,7 +43,6 @@
<span>{{ offering.cloud_provider.name }}</span>
</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>