diff --git a/lib/kmxgit_web/templates/organisation/show.html.heex b/lib/kmxgit_web/templates/organisation/show.html.heex
index 891a362..a6c0cd1 100644
--- a/lib/kmxgit_web/templates/organisation/show.html.heex
+++ b/lib/kmxgit_web/templates/organisation/show.html.heex
@@ -61,13 +61,9 @@
<% end %>
</th>
<td>
- <ul>
- <%= for user <- @org.users do %>
- <li>
- <%= link(user.slug.slug, to: Routes.slug_path(@conn, :show, user.slug.slug), class: "user") %>
- </li>
- <% end %>
- </ul>
+ <%= for user <- @org.users do %>
+ <%= render(KmxgitWeb.UserView, "avatar.html", conn: @conn, email: user.email, size: 48, title: user.slug.slug, class: "") %>
+ <% end %>
</td>
</tr>
<tr>