% if ma.class == SystemMessage %>
<%# @user_system_messages.each do |usm| %>
-
<%= image_tag("/images/trustie_logo1.png", width: "30px", height: "30px", class: "mt3") %>
-
Trustie平台发布新消息:
【系统消息】
-
<%= link_to ma.subject.blank? ? (ma.content.nil? ? ma.description.html_safe : ma.content.html_safe) : ma.subject, user_system_messages_path(User.current),
:id => "content_link_#{ma.id}",
:onmouseover =>"message_titile_show($(this),event);",
:onmouseout => "message_titile_hide($(this));"
%>
<% unless ma.subject.blank? %>
标题:<%= ma.subject %>
<% end %>
<% if (!ma.description.blank?) || (!ma.content.blank?) %>
内容:
<%= ma.description.nil? ? ma.content.html_safe : ma.description.html_safe %>
<% end %>
- <%= time_tag(ma.created_at).html_safe %>
<%# end %>
<% end %>