diff --git a/hub/services/templates/services/provider_detail.html b/hub/services/templates/services/provider_detail.html index b680070..8aaf545 100644 --- a/hub/services/templates/services/provider_detail.html +++ b/hub/services/templates/services/provider_detail.html @@ -1,56 +1,68 @@ {% extends 'services/base.html' %} {% block content %} -
-
-
- {% if provider.logo %} - {{ provider.name }} logo - {% endif %} -
-

{{ provider.name }}

-
- {{ provider.description|safe }} +
+
+
+
+
+

{{ provider.name }}

+
+
+ {{ provider.description|safe }} +
+
+ {% if provider.website %} + + {% endif %} +
+
+
+
+ {% if provider.logo %} + {{ provider.name }} logo + {% endif %}
+
+
-

Available Services

-
- {% for service in services %} -
-
-
-
- {% if service.logo %} +
+

Available Services

+

The following services are available on {{ provider.name }}

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