0
0
Fork 0

Implement the ability for an Administrator or Moderator to remove an account avatar (#6998)

This commit is contained in:
Emelia Smith 2018-04-02 13:45:07 +02:00 committed by Eugen Rochko
parent 4fd71accd4
commit e7a1716701
6 changed files with 29 additions and 2 deletions

View file

@ -14,6 +14,14 @@
%th= t('admin.accounts.display_name')
%td= @account.display_name
%tr
%th= t('admin.accounts.avatar')
%th
= link_to @account.avatar.url(:original) do
= image_tag @account.avatar.url(:original), alt: '', width: 40, height: 40, class: 'avatar'
- if @account.local? && @account.avatar?
= table_link_to 'trash', t('admin.accounts.remove_avatar'), remove_avatar_admin_account_path(@account.id), method: :post, data: { confirm: t('admin.accounts.are_you_sure') } if can?(:remove_avatar, @account)
- if @account.local?
%tr
%th= t('admin.accounts.role')