* 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
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			599 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			599 B
		
	
	
	
		
			Text
		
	
	
	
	
	
- 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'
 | 
						|
 | 
						|
.table-wrapper
 | 
						|
  %table.table
 | 
						|
    %thead
 | 
						|
      %tr
 | 
						|
        %th= t('admin.reports.id')
 | 
						|
        %th= t('admin.reports.target')
 | 
						|
        %th= t('admin.reports.reported_by')
 | 
						|
        %th= t('admin.reports.report_contents')
 | 
						|
        %th= t('admin.reports.assigned')
 | 
						|
        %th
 | 
						|
    %tbody
 | 
						|
      = render @reports
 | 
						|
 | 
						|
= paginate @reports
 |