Files
fizzy/app/views/events/event/_attachments.html.erb
T
2025-11-05 13:41:12 +01:00

8 lines
511 B
Plaintext

<% if eventable&.has_attachments? || eventable&.has_remote_images? || eventable&.has_remote_videos? %>
<span class="event_attachments margin-block-half flex align-center gap-half">
<%= render partial: "events/event/attachments/attachment", collection: eventable.attachments %>
<%= render partial: "events/event/attachments/remote_image", collection: eventable.remote_images %>
<%= render partial: "events/event/attachments/remote_video", collection: eventable.remote_videos %>
</span>
<% end %>