Improve clips page formatting

This commit is contained in:
Roscoe 2025-09-10 04:00:09 +01:00
commit fffdaa60ac
Signed by: RoscoeDaWah
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE
2 changed files with 25 additions and 16 deletions

View file

@ -1,13 +1,12 @@
<% cache @clip do %>
<h1><%= @clip.title %></h1>
<% end %>
<% if @clip.video.attached? %>
<%= video_tag @clip.video, :controls => true%><br>
<% end %>
<b>Category:</b> <%= link_to @clip.category.name, @clip.category %><br>
<b>Tags:</b> <%= @clip.tags.map(&:name).join(', ') %><br>
<% if @clip.video.attached? %>
<%= video_tag @clip.video, :controls => true%>
<% end %>
<%= link_to "Back", clips_path%>
<% if authenticated? %>
<%= link_to "Edit", edit_clip_path(@clip) %>
<%= button_to "Edit", edit_clip_path(@clip), :method => "get" %>
<%= button_to "Delete", @clip, method: :delete, data: { turbo_confirm: "Are you sure?" } %>
<% end %>