Skip to content

Instantly share code, notes, and snippets.

@ZucchiniZe
Created October 21, 2015 23:55
Show Gist options
  • Select an option

  • Save ZucchiniZe/78edff2d9e333c42cd6f to your computer and use it in GitHub Desktop.

Select an option

Save ZucchiniZe/78edff2d9e333c42cd6f to your computer and use it in GitHub Desktop.
<p id="notice"><%= notice %></p>
<h1>Listing Clubs</h1>
<table>
<thead>
<tr>
<th>Club</th>
<!-- <th>Leader(s)</th> -->
<th>Advisor</th>
<th>Mission</th>
<th>Description</th>
<th>Website</th>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
<% @clubs.each do |club| %>
<tr>
<td><%= club.club %></td>
<% club.leaders_at_club.each do |leader| %>
<td><%= leader.name %></td>
<% end %>
<td><%= club.advisor %></td>
<td><%= club.mission %></td>
<td><%= club.description %></td>
<td><%= club.website %></td>
<td><%= link_to 'Show', club %></td>
<td><%= link_to 'Edit', edit_club_path(club) %></td>
<td><%= link_to 'Destroy', club, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Club', new_club_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment