playground/app/views/scraps/index.html.erb

25 lines
717 B
Text
Raw Normal View History

2026-05-17 03:44:36 +00:00
<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| %>
2026-05-17 17:41:08 +00:00
(<%= link_to 'Read', scrap_path(scrap) %>) <br> | | <%= time_ago_in_words(scrap.created_at) %> ago
2026-05-17 03:44:36 +00:00
<br>
2026-05-17 17:41:08 +00:00
<%= truncate(scrap.text.to_plain_text, length: 350) %> <% if authenticated? %>
2026-05-17 03:44:36 +00:00
|
<%= 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 %>