* 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
283 B
Plaintext
10 lines
283 B
Plaintext
<%= render(MediaAssetGalleryComponent.new(size: size)) do |gallery| %>
|
|
<% uploads.each do |upload| %>
|
|
<% gallery.media_asset do %>
|
|
<%= render "uploads/preview", upload: upload, size: gallery.size %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<%= numbered_paginator(uploads) %>
|