{% if offerings %}
{% for offering in offerings %}

{{ offering.title }}

{% if offering.summary %}

{{ offering.summary }}

{% endif %} {% if offering.current_rate %}

£{{ "%.2f"|format(offering.current_rate.amount) }} {{ offering.current_rate.unit }} {% if offering.current_rate.basis %} {{ offering.current_rate.basis }} {% endif %}

{% elif offering.status == 'gratis' %}

Offered pro bono.

{% elif offering.status == 'aspirational' %}

Planned — not yet available.

{% endif %} {% if offering.reference_url %}

See {{ offering.reference_label or 'reference rates' }}.

{% endif %}
{% if content and content.email %} Make enquiry {% endif %}
{% endfor %}
{% endif %}