* Add a "Size" menu to the My Uploads / All Uploads pages to allow changing the thumbnail size. * Make the My Uploads / All Uploads pages use the same thumbnail size as the post index page. * Change the "Gallery | Table" links on the My Uploads page to icons.
10 lines
340 B
Plaintext
10 lines
340 B
Plaintext
<%= render(MediaAssetGalleryComponent.new(size: size)) do |gallery| %>
|
|
<% media_assets.each do |media_asset| %>
|
|
<% if policy(media_asset).can_see_image? %>
|
|
<% gallery.media_asset do %>
|
|
<%= render "media_assets/preview", media_asset: media_asset, size: gallery.size %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|