get it on cta on service detail page

This commit is contained in:
Tobias Brunner 2025-02-27 15:16:23 +01:00
parent bde13d4d95
commit eece05af74
No known key found for this signature in database

View file

@ -122,6 +122,17 @@
</div> </div>
</div> </div>
{% endif %} {% endif %}
{% if service.offerings.exists %}
<div class="pt-24">
<div class="page-action">
{% for offering in service.offerings.all %}
<a class="btn btn-primary btn-lg mr-md-17 mb-17 mb-md-0px mb-lg-17 mb-xl-0 w-100 w-md-auto" href="{% url 'services:offering_detail' offering.slug %}"
role="button">Get it on {{ offering.cloud_provider.name }}</a>
{% endfor %}
</div>
</div>
{% endif %}
</div> </div>
</div> </div>
</div> </div>