forked from cybrespace/mastodon
parent
447d733913
commit
e926811724
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
module Admin::AccountModerationNotesHelper
|
module Admin::AccountModerationNotesHelper
|
||||||
def admin_account_link_to(account)
|
def admin_account_link_to(account)
|
||||||
|
return if account.nil?
|
||||||
|
|
||||||
link_to admin_account_path(account.id), class: name_tag_classes(account) do
|
link_to admin_account_path(account.id), class: name_tag_classes(account) do
|
||||||
safe_join([
|
safe_join([
|
||||||
image_tag(account.avatar.url, width: 15, height: 15, alt: display_name(account), class: 'avatar'),
|
image_tag(account.avatar.url, width: 15, height: 15, alt: display_name(account), class: 'avatar'),
|
||||||
|
@ -11,6 +13,8 @@ module Admin::AccountModerationNotesHelper
|
||||||
end
|
end
|
||||||
|
|
||||||
def admin_account_inline_link_to(account)
|
def admin_account_inline_link_to(account)
|
||||||
|
return if account.nil?
|
||||||
|
|
||||||
link_to admin_account_path(account.id), class: name_tag_classes(account, true) do
|
link_to admin_account_path(account.id), class: name_tag_classes(account, true) do
|
||||||
content_tag(:span, account.acct, class: 'username')
|
content_tag(:span, account.acct, class: 'username')
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue