playground/app/views/scraps/index.html.erb
2026-05-17 17:41:08 +00:00

24 lines
717 B
Text

<div class="mainaboutbox">
<% if authenticated? %>
<%= link_to 'New Scrap', new_scrap_path %>
<% else %>
.
<% end %><br><br>
<h1>SCRAPBOOK</h1>
random thoughts longer than miniblog length will go here :)<br><br>
<hr>
<% @scraps.each do |scrap| %>
(<%= link_to 'Read', scrap_path(scrap) %>) <br> | | <%= time_ago_in_words(scrap.created_at) %> ago
<br>
<%= truncate(scrap.text.to_plain_text, length: 350) %> <% if authenticated? %>
|
<%= link_to 'Edit', edit_scrap_path(scrap) %>
<%= link_to 'Destroy', scrap_path(scrap), data: {
turbo_method: :delete,
turbo_confirm: "Are you sureee?"
} %>
<% else %>
<% end %><br><br><hr>
<% end %>