contactorama/app/views/contacts/index.html.erb
2012-04-18 23:30:00 +02:00

26 lines
834 B
Text

<% title t("titles.contacts.index") %>
<% ctr = 1 %>
<div class="row">
<% @contacts.each do |c| %>
<div class="onecol avatar_summary">
<%= link_to (image_tag("dummy_buddy_m.png")), c %>
</div>
<% if ctr.modulo(4) == 0 %>
<div class="twocol last contact_summary">
<% else %>
<div class="twocol contact_summary">
<% end %>
<span class="name_summary"><%= link_to (c.firstname.blank? ? "&nbsp;".html_safe : c.firstname), c %></span><br />
<strong><%= link_to (c.lastname.blank? ? "&nbsp;".html_safe : c.lastname), c %></strong>
<br />
<%= link_to (c.birth_date_string.blank? ? "&nbsp;".html_safe : c.birth_date_string), c %>
</div> <%# threecol %>
<% if ctr.modulo(4) == 0 %>
</div>
<div class="row">
<% end %>
<% ctr += 1 %>
<% end %>
</div> <%# row %>