Advertisement
aacode20

index.html.erb

Apr 6th, 2019
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <h1>List of Articles</h1>
  2.  
  3. <%= link_to 'Back To Welcome Page', welcome_index_path %>
  4.  
  5. <%= link_to 'New Article', new_article_path %>
  6.  
  7. <table>
  8. <tr>
  9. <th>Title</th>
  10. <th>Text</th>
  11. <th>Link</th>
  12. </tr>
  13.  
  14. <%= @articles.each do |article| %>
  15. <tr>
  16. <td><%= article.title %></td>
  17. <td><%= article.text %></td>
  18. <td><%= link_to 'Show', article_path(article) %></td>
  19. <td><%= link_to 'Edit', edit_article_path(article) %></td>
  20. </tr>
  21. <% end %>
  22. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement