|
|
|
@ -2,13 +2,17 @@
|
|
|
|
|
<% if @libraries.present? %>
|
|
|
|
|
<% @libraries.each do |library| %>
|
|
|
|
|
<li class="library_list_item">
|
|
|
|
|
<img src="/<%= url_to_avatar(library.user) %>" width="50" height="50" class="radius mr15 mt3">
|
|
|
|
|
<%= link_to image_tag(url_to_avatar(library.user), width: 50, height: 50, class: 'radius mr15 mt3'), user_path(library.user) %>
|
|
|
|
|
<div class="flex1">
|
|
|
|
|
<p class="task-hide font-16 mb15 lineh-20"><%= link_to library.title, library_path(library) %></p>
|
|
|
|
|
<p class="clearfix lineh-20">
|
|
|
|
|
<span class="color-grey-3 mr20"><%= link_to library.user.show_real_name, user_path(library.user) %></span>
|
|
|
|
|
<span class="color-grey-c mr20"><%= library.visited_count || 0 %> 浏览</span>
|
|
|
|
|
<% if params[:type] == 'mine' %>
|
|
|
|
|
<span class="color-grey-c mr20">上传时间:<%= library.created_at.strftime('%Y-%m-%d %H:%M') %></span>
|
|
|
|
|
<% else %>
|
|
|
|
|
<span class="color-grey-c mr20">发布时间:<%= library.published_at.try(:strftime, '%Y-%m-%d %H:%M') %></span>
|
|
|
|
|
<% end %>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|