Merge branch 'develop' into standalone_develop

This commit is contained in:
yystopf 2022-11-09 14:55:06 +08:00
commit f75e05bb84
1 changed files with 5 additions and 1 deletions

View File

@ -17,7 +17,11 @@
<td><%= feedback&.user&.login%></td>
<td><%= feedback&.user&.mail%></td>
<td><%= feedback.created_at&.strftime('%Y-%m-%d %H:%M') %></td>
<td><%= feedback.content %></td>
<td>
<a href="#" data-toggle="tooltip" data-placement="bottom" title="<%= feedback.content%>">
<%= feedback.content.truncate(30) %>
</a>
</td>
<td class="action-container">
<%= link_to "发送邮件", new_history_admins_feedback_path(feedback), remote: true, class: "action" %>
<%#= link_to "删除", admins_feedback_path(feedback), method: :delete, data:{confirm: "确认删除的吗?"}, class: "action" %>