<% visible_timelines = if user_signed_in? && current_user == content.user content.timelines else [] end %>
<%= render partial: 'notice_dismissal/messages/14' %> <% if visible_timelines.any? %> <%= content.name %> appears in the following timelines:
    <% visible_timelines.each do |timeline| %>
  • <%= link_to edit_timeline_path(timeline) do %>
    <%= image_tag timeline.random_public_image(format: :medium), style: 'height: 140px' %> <%= timeline.name.presence || 'Untitled Timeline' %>
    <% if timeline.universe_id? %>

    <%= link_to timeline.universe, class: "#{Universe.color}-text" do %> <%= Universe.icon %> <%= timeline.universe.name %> <% end %>

    <% end %>

    <%= timeline.subtitle %>

    <%= timeline.description %>

    Last edited <%= time_ago_in_words timeline.updated_at %> ago

    <% end %>
  • <% end %>
<% end %>