* Expose media attachments on reported statuses directly * Comment out unused bulk report checkbox. Add title to report comment for viewing full comment. Add 'contents' column, with icons and numerical indicators to show the number of referenced statuses and media attachments in the report * Link account name on authorize_follow card back to account * Add localisation string for report_contents * Show new admin accounts card partial on report view. Apply simple_format to report comment so newlines are preserved. * Add new admin accounts card partial, for display quick useful admin stats (e.g. report history, moderation status). * Fix localized variable
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| - content_for :page_title do
 | |
|   = t('admin.reports.title')
 | |
| 
 | |
| .filters
 | |
|   .filter-subset
 | |
|     %strong= t('admin.reports.status')
 | |
|     %ul
 | |
|       %li= filter_link_to t('admin.reports.unresolved'), resolved: nil
 | |
|       %li= filter_link_to t('admin.reports.resolved'), resolved: '1'
 | |
| 
 | |
| = form_tag do
 | |
| 
 | |
|   %table.table
 | |
|     %thead
 | |
|       %tr
 | |
|         -# %th
 | |
|         %th= t('admin.reports.id')
 | |
|         %th= t('admin.reports.target')
 | |
|         %th= t('admin.reports.reported_by')
 | |
|         %th= t('admin.reports.comment.label')
 | |
|         %th= t('admin.reports.report_contents')
 | |
|         %th
 | |
|     %tbody
 | |
|       - @reports.each do |report|
 | |
|         %tr
 | |
|           -# %td= check_box_tag 'select', report.id
 | |
|           %td= "##{report.id}"
 | |
|           %td= link_to report.target_account.acct, admin_account_path(report.target_account.id)
 | |
|           %td= link_to report.account.acct, admin_account_path(report.account.id)
 | |
|           %td
 | |
|             %span{title: report.comment}
 | |
|               = truncate(report.comment, length: 30, separator: ' ')
 | |
|           %td
 | |
|             - unless report.statuses.empty?
 | |
|               %span{title: t('admin.accounts.statuses')}
 | |
|                 = fa_icon('comment')
 | |
|                 = report.statuses.count
 | |
|             - unless report.media_attachments.empty?
 | |
|               %span{title: t('admin.accounts.media_attachments')}
 | |
|                 = fa_icon('camera')
 | |
|                 = report.media_attachments.count
 | |
|           %td= table_link_to 'circle', t('admin.reports.view'), admin_report_path(report)
 | |
| 
 | |
| = paginate @reports
 |