Improve clips page formatting
This commit is contained in:
parent
29368bfdb9
commit
fffdaa60ac
2 changed files with 25 additions and 16 deletions
|
|
@ -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 %>
|
||||
Loading…
Add table
Add a link
Reference in a new issue