Files
fetsite/app/views/gremien/index.html.erb
Andreas Stephanides 9e26c49f0e theme_anpassung
2014-01-15 13:47:35 +01:00

21 lines
384 B
Plaintext

<%= render 'fetprofiles/tabs' %>
<div class="content-wrap content-column">
<h1>Alle Gremien</h1>
<% unless params[:filter].nil? %>
<p><%= Gremium::TEXT[params[:filter]] %></p>
<% end %>
<ul class="unstyled fetprofile_list">
<% @gremien.each do |g| %>
<li>
<%= link_to g do %>
<h2><%= g.name %></h2>
<p><%= g.desc %></p>
<% end %>
</li>
<% end %>
</ul>
</div>