Files
grecia/app/views/relationable/_related_list.html.erb
María Checa 4f442792cc Added working related contents list
Also separated related contents into partials.
2017-12-13 13:32:00 +01:00

17 lines
570 B
Plaintext

<ul class="related-content-list" id="related-content-list">
<% relationable.relationed_contents.each do |related| %>
<li>
<a href="#" class="float-right flag">
<span class="icon-flag"></span> <!-- This should be similar to comments/flag_actions -->
</a>
<span><%= t("related_content.content_title.#{related.class.name.downcase}") %></span><br>
<h3 class="inline-block">
<%= link_to related.title, eval("#{related.class.name.downcase}_path(related)") %>
</h3>
</li>
<% end %>
</ul>
<!-- Add pagination here -->