| <%= doc.title %> |
<%= doc.description.presence || "—" %> |
<% if doc.file.attached? %>
<%= link_to "View", url_for(doc.file), target: "_blank", class: "btn btn-sm btn-outline-primary" %>
<% else %>
No File
<% end %>
|
<%= doc.created_at.strftime("%d %b %Y, %H:%M") %> |
<% if @portal_namespace != :admin_portal %>
<%= link_to "Delete", polymorphic_path([@portal_namespace, @customer, doc]), data: { turbo_method: :delete, confirm: "Delete this document?" }, class: "btn btn-sm btn-danger" %>
<% end %>
|
<% end %>