Compare commits

..

No commits in common. "e0d05302b51e9364faba9f241782e0b159ded0bd" and "5b876de18ab03090141ed4335972609902bd4fa8" have entirely different histories.

View file

@ -40,13 +40,6 @@
</div> </div>
</div> </div>
<div class="card-body"> <div class="card-body">
{% if offering.description %}
<div class="row mb-3">
<div class="col-12">
<p>{{ offering.description|urlize }}</p>
</div>
</div>
{% endif %}
{% if not has_control_planes %} {% if not has_control_planes %}
<p>{% translate "We currently cannot offer this service, sorry!" %}</p> <p>{% translate "We currently cannot offer this service, sorry!" %}</p>
{% else %} {% else %}
@ -56,24 +49,6 @@
{{ select_form }} {{ select_form }}
</form> </form>
{% endif %} {% endif %}
{% if service.external_links %}
<div class="row mt-3">
<div class="col-12">
<h6 class="mb-3">{% translate "External Links" %}</h6>
<div class="d-flex flex-wrap gap-2">
{% for link in service.external_links %}
<a href="{{ link.url }}"
target="_blank"
rel="noopener noreferrer"
class="btn btn-outline-primary btn-sm">
{{ link.title }}
<i class="bi bi-box-arrow-up-right ms-1"></i>
</a>
{% endfor %}
</div>
</div>
</div>
{% endif %}
</div> </div>
</div> </div>
<div id="service-form">{% partial service-form %}</div> <div id="service-form">{% partial service-form %}</div>