{% extends 'services/base.html' %} {% block content %}
{% if provider.logo %} {{ provider.name }} logo {% endif %}

{{ provider.name }}

{{ provider.description|safe }}

Available Services

{% for service in services %}
{% if service.logo %} {{ service.name }} logo {% endif %}
{{ service.name }}
{{ service.description|safe|truncatewords_html:30 }}
{% for category in service.categories.all %} {{ category.full_path }} {% endfor %}
View Details
{% empty %}
No services available from this provider yet.
{% endfor %}
{% endblock %}