kissingcomputer/app/views/articles/index.html.erb
2026-01-10 16:17:07 +00:00

20 lines
565 B
Text

<% if current_user %>
<%= link_to 'New Poast', new_article_path(@article) %> <hr><br><% end %><br>
<% @articles.each do |article| %>
<tr>
<td><%= article.title %></td>
<br>
<td><%= link_to 'View', article_path(article) %></td> <br>
<% if current_user %>
|
<td><%= link_to 'Edit', edit_article_path(article) %></td>
<td><%= link_to 'Destroy', article_path(article), data: {
turbo_method: :delete,
turbo_confirm: "Are you sure?"
} %>
<% end %>
<br> <br><hr>
<% end %>