notebook/app/views/cards/user/_recent_activity.html.erb
2020-07-05 19:32:46 -05:00

14 lines
444 B
Plaintext

<%# todo this looks like an unused partial %>
<% if content_list && content_list.any? %>
<div style="margin-top: -10px;" class="recent-activity">
<%=
render partial: 'content/list/list',
locals: {
title: defined?(title) ? title : 'Recent creations',
content_list: content_list,
content_type: Character # todo why is this hard-coded?
}
%>
</div>
<% end %>