17 lines
737 B
Plaintext
17 lines
737 B
Plaintext
<% if can? :hide, (notification || notification.author) %>
|
|
<div class="reply">
|
|
<span class='js-moderation-actions'>
|
|
<% if can? :hide, notification %>
|
|
<%= link_to t("admin.actions.hide").capitalize, hide_moderation_proposal_notification_path(notification),
|
|
method: :put, remote: true, data: { confirm: t('admin.actions.confirm') } %>
|
|
<% end %>
|
|
|
|
<% if can? :hide, notification.author %>
|
|
<span class="divider"> • </span>
|
|
<%= link_to t("admin.actions.hide_author").capitalize, hide_moderation_user_path(notification.author_id),
|
|
method: :put, data: { confirm: t('admin.actions.confirm') } %>
|
|
<% end %>
|
|
</span>
|
|
</div>
|
|
<% end %>
|