Files
fetsite/app/views/fetprofiles/index.html.erb
Andreas Stephanides 9a2bf17e81 fetprofile redesign
2014-10-27 15:40:12 +01:00

48 lines
852 B
Plaintext

<%= render 'fetprofiles/tabs' %>
<div class="content-wrap content-column">
<h1>
<%= I18n.t 'profile.all_members' if params[:filter] == "all" %>
<%= I18n.t 'profile.active_members' if params[:filter].nil? || params[:filter]== "active"
%>
</h1>
<div class="row-fluid">
<div class="span12">
<%= render 'layouts/pretty_toolbar' %>
<% link_to I18n.t('profile.new_profile'), new_fetprofile_path %>
</div>
</div>
<% @fetprofiles.each_slice(4) do |row| %>
<div class="row-fluid">
<% row.each do |fetprofile| %>
<div class="span3">
<%= link_to fetprofile do %>
<%= render :partial=>"portrait", :object=>fetprofile %>
<% end %>
</div>
<% end %>
</div>
<% end %>
<div class="row-fluid">
<div class="span12">
<%= link_to I18n.t('profile.new_profile'), new_fetprofile_path %>
</div>
</div>
</div>
</div>