Skip to content

Instantly share code, notes, and snippets.

@tylerlee
Last active January 2, 2016 18:19
Show Gist options
  • Select an option

  • Save tylerlee/8343191 to your computer and use it in GitHub Desktop.

Select an option

Save tylerlee/8343191 to your computer and use it in GitHub Desktop.
<%= list_table_for @team_members do |list| %>
<% list.empty 'There are no people to show at this time' %>
<% list.row do |team_member| %>
<td class="list-item">
<%= profile_picture(team_member) %>
<div class="list-item-title with-pic">
<h5><%= team_member.display_name %></h5>
<div class="details"><%= (team_member.city + ', ' if team_member.city) + team_member.state %></div>
</div>
</td>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment