Fix displaying of services on User Information page

This commit is contained in:
Pea Tyczynska
2018-07-16 16:34:10 +01:00
parent d76f30e9f8
commit b3d99507bd
3 changed files with 23 additions and 6 deletions

View File

@@ -16,9 +16,9 @@
<h2 class="heading-medium">Services</h2>
<nav class="browse-list">
<ul>
{% for service in user.services %}
{% for service in services %}
<li class="browse-list-item">
<p class="browse-list-sub-item">{{ service.name }}</p>
<p class="browse-list-hint">{{ service.name }}</p>
</li>
{% endfor %}
</ul>