Sha256: 563e847ca75bd6b3b3d3023bc8d8f2ced010e3b959afeac385c5eca2cd5c9e73
Contents?: true
Size: 540 Bytes
Versions: 17
Compression:
Stored size: 540 Bytes
Contents
<p style="color: green"><%= notice %></p> <h1>Posts</h1> <%= link_to "New post", new_post_path %> <hr> <%= paginate @posts %> <hr> <div id="posts"> <h1>Players List</h1> <table> <tr> <th>Title</th> <th>Body</th> <th>Order</th> <th></th> </tr> <% @posts.each do |post| %> <tr> <td><%=post.title %></td> <td><%=post.body %></td><td> <td><%=post.order %></td> <td><%= link_to 'Show', post %></td> </tr> <% end %> </table> </div> <%= page_entries_info @posts %>
Version data entries
17 entries across 17 versions & 1 rubygems