diff --git a/app/views/fetprofiles/show.html.erb b/app/views/fetprofiles/show.html.erb
index baba82f..ded2659 100644
--- a/app/views/fetprofiles/show.html.erb
+++ b/app/views/fetprofiles/show.html.erb
@@ -17,7 +17,7 @@
<% @memberships.each do |m| %>
-
- <%= render m %>
+ <%= link_to m.gremium do %> <%= render m %><% end %>
<%= link_to I18n.t('common.edit'), edit_fetprofile_membership_path(@fetprofile,m) if params["verwalten"] && can?(:edit, m)%>
<%= link_to I18n.t('common.delete'), [@fetprofile, m], method: :delete, data: {confirm: I18n.t('common.sure_del')} if params["verwalten"] && can?(:delete, m ) %>