<%= render 'fetprofiles/tabs' %>

<%= notice %>

<%= @gremium.name %>

<% Gremium::TYPEN[@gremium.typ.to_i].to_s %>

<%= @gremium.desc.html_safe %>

<% unless @gremium.thema.nil? %>

<%= link_to "Mehr zum Gremium lesen ..." ,themengruppe_path(@gremium.thema.themengruppe , {:thema=>@gremium.thema.id})%>

<% end %>
<% @memberships.each_slice(4) do |r| %>
<% r.each do |m| %> <%= link_to m.fetprofile do %>
<%= image_tag m.fetprofile.try(:picture).try(:portrait) %>

<% if m.fetprofile.nil?%> PROFIL fehlt <% else %> <%= m.fetprofile.name %>
<%= render(m) %> <% end %>

<% end %> <% end %>
<% end %>
<%= link_to I18n.t('common.edit'), edit_gremium_path(@gremium) %>