Created
October 21, 2015 23:55
-
-
Save ZucchiniZe/78edff2d9e333c42cd6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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