index.html.erb 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <p id="notice"><%= notice %></p>
  2. <h1 class="text-center">Your Party</h1>
  3. <table class="table table-dark table-striped table-padded">
  4. <thead>
  5. <tr>
  6. <th>Avatar</th>
  7. <th>Name</th>
  8. <th>Health</th>
  9. <th>Strength</th>
  10. <th>Intelligence</th>
  11. <th>Agility</th>
  12. <th>Luck</th>
  13. <th colspan="3" class="text-center">Manage</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. <% @characters.each do |character| %>
  18. <tr>
  19. <td><%= image_tag(character.avatar, size: '100x100')%></td>
  20. <td><%= character.name %></td>
  21. <td><%= character.health %></td>
  22. <td><%= character.strength %></td>
  23. <td><%= character.intelligence %></td>
  24. <td><%= character.agility %></td>
  25. <td><%= character.luck %></td>
  26. <td><%= link_to 'Show', character %></td>
  27. <td><%= link_to 'Edit', edit_character_path(character) %></td>
  28. <td><%= link_to 'Destroy', character, method: :delete, data: { confirm: 'Are you sure?' } %></td>
  29. </tr>
  30. <% end %>
  31. </tbody>
  32. </table>
  33. <br>
  34. <div class="text-center">
  35. <%# <%= button_to 'New Character', action: "new", class: "btn btn-primary center" %>
  36. <%= button_to 'New Character', new_character_path, method: "get", class: "btn btn-primary text-center"%>
  37. </div>