2016-08-24 21:45:49 +08:00
|
|
|
<div class="pull-right">
|
2019-01-08 13:29:37 +08:00
|
|
|
<span class="text-muted"><%= l comment.created_at, format: :time %></span>
|
2018-02-03 03:04:19 +08:00
|
|
|
<% if can_manage_comment_in_project?(comment) %>
|
2016-08-24 21:45:49 +08:00
|
|
|
<div class="dropdown dropdown-comment">
|
|
|
|
<a href="#"
|
|
|
|
class="dropdown-toggle"
|
|
|
|
data-role="comment-options"
|
|
|
|
type="button"
|
|
|
|
id="comment-<%= comment.id %>-dropdown"
|
|
|
|
data-toggle="dropdown"
|
|
|
|
aria-haspopup="true"
|
|
|
|
aria-expanded="true">
|
|
|
|
<span class="caret"></span>
|
|
|
|
</a>
|
2018-05-15 00:33:57 +08:00
|
|
|
<ul class="dropdown-menu custom-dropdown-menu dropdown-menu-fixed" aria-labelledby="comment-<%= comment.id %>-dropdown">
|
2016-08-24 21:45:49 +08:00
|
|
|
<li class="dropdown-header"><%= I18n.t('comments.options_dropdown.header') %></li>
|
2016-08-25 19:48:37 +08:00
|
|
|
<li>
|
|
|
|
<a href="#"
|
|
|
|
data-action="edit-comment"
|
2017-06-29 19:33:59 +08:00
|
|
|
data-remote="true"
|
2017-03-08 20:18:20 +08:00
|
|
|
data-url="<%= edit_project_project_comment_path(comment.project, comment, format: :json) %>">
|
2016-08-25 19:48:37 +08:00
|
|
|
<%= t('comments.options_dropdown.edit') %>
|
|
|
|
</a>
|
2016-08-24 21:45:49 +08:00
|
|
|
</li>
|
2016-08-25 19:48:37 +08:00
|
|
|
<li>
|
|
|
|
<a href="#"
|
|
|
|
data-action="delete-comment"
|
2017-03-08 20:18:20 +08:00
|
|
|
data-url="<%= project_project_comment_path(comment.project, comment, format: :json) %>"
|
2016-08-25 19:48:37 +08:00
|
|
|
data-confirm-message="<%= t('comments.delete_confirm') %>">
|
|
|
|
<%= t('comments.options_dropdown.delete') %>
|
|
|
|
</a>
|
|
|
|
</li>
|
2016-08-22 21:10:06 +08:00
|
|
|
</ul>
|
|
|
|
</div>
|
2016-08-24 21:45:49 +08:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<strong><%= comment.user.full_name %>:</strong>
|
2016-08-24 23:38:31 +08:00
|
|
|
<div data-role="comment-message-container">
|
2018-11-19 15:02:25 +08:00
|
|
|
<div data-role="comment-message"><%= custom_auto_link(comment.message, team: current_team) %></div>
|
2016-08-24 23:38:31 +08:00
|
|
|
</div>
|