diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-05-05 23:06:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-05 23:06:29 +0200 |
commit | c7d1a2e400cd6677057a8af90fff866207576098 (patch) | |
tree | df1790bcb483f66c552bc39de116aab85b49d45c /app/views/admin/account_moderation_notes | |
parent | 660db468c09146802bd4418599cf4103ef190c10 (diff) |
Improve admin UI for accounts (#7360)
* Improve design of account statuses admin UI (consistent with reports) * Make account moderation notes look consistent with report notes * i18n-tasks remove-unused * Fix code style issues * Fix tests
Diffstat (limited to 'app/views/admin/account_moderation_notes')
-rw-r--r-- | app/views/admin/account_moderation_notes/_account_moderation_note.html.haml | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/app/views/admin/account_moderation_notes/_account_moderation_note.html.haml b/app/views/admin/account_moderation_notes/_account_moderation_note.html.haml index 6761a4319..432fb79a6 100644 --- a/app/views/admin/account_moderation_notes/_account_moderation_note.html.haml +++ b/app/views/admin/account_moderation_notes/_account_moderation_note.html.haml @@ -1,10 +1,7 @@ -%tr - %td +.speech-bubble + .speech-bubble__bubble = simple_format(h(account_moderation_note.content)) - %td - = account_moderation_note.account.acct - %td - %time.formatted{ datetime: account_moderation_note.created_at.iso8601, title: l(account_moderation_note.created_at) } - = l account_moderation_note.created_at - %td - = link_to t('admin.account_moderation_notes.delete'), admin_account_moderation_note_path(account_moderation_note), method: :delete if can?(:destroy, account_moderation_note) + .speech-bubble__owner + = admin_account_link_to account_moderation_note.account + %time.formatted{ datetime: account_moderation_note.created_at.iso8601 }= l account_moderation_note.created_at + = table_link_to 'trash', t('admin.account_moderation_notes.delete'), admin_account_moderation_note_path(account_moderation_note), method: :delete if can?(:destroy, account_moderation_note) |