a9c440637c
* Use table for statuses in report * Display reported account and reporter in the same table * Split accounts and general report info into two tables again * Redesign report statuses table, notes, merge notes and action log * Remove unused translations * Fix code style issue * Fix code style issue * Fix code style issue
15 lines
758 B
Text
15 lines
758 B
Text
.log-entry
|
|
.log-entry__header
|
|
.log-entry__avatar
|
|
= image_tag action_log.account.avatar.url(:original), alt: '', width: 40, height: 40, class: 'avatar'
|
|
.log-entry__content
|
|
.log-entry__title
|
|
= t("admin.action_logs.actions.#{action_log.action}_#{action_log.target_type.underscore}", name: content_tag(:span, action_log.account.username, class: 'username'), target: content_tag(:span, log_target(action_log), class: 'target')).html_safe
|
|
.log-entry__timestamp
|
|
%time= l action_log.created_at
|
|
.spacer
|
|
.log-entry__icon
|
|
= fa_icon icon_for_log(action_log)
|
|
.log-entry__icon__overlay{ class: class_for_log_icon(action_log) }
|
|
.log-entry__extras
|
|
= log_extra_attributes relevant_log_changes(action_log)
|