1 <p id= "notice"><%= notice %></p>
3 <% content_for :heading do %>
4 <h1>List of <%= @user_role %> issues:</h1>
7 <%= form_tag(issues_path, :method => :get) do %>
8 Search for a particular issue(s): <br/>
9 <%= select :status, nil, [['open', 0],['resolved',2],['ignored',1]],{:include_blank => "Select status"},data: { behavior: 'category_dropdown' } %>
10 <%= select :issue_type, nil, @issue_types,{:include_blank => "Select type"}, data: { behavior: 'category_dropdown' } %>
11 <%= text_field_tag :search_by_user, params[:search_by_user], placeholder: "Reported User" %>
12 <%= select :last_reported_by, nil, @users.all.collect {|f| [f.display_name, f.id]} << ['Not updated',"nil"], {:include_blank => "Select last updated by"}, data: { behavior: 'category_dropdown' } %>
13 <%= submit_tag "Search" %>
21 <td style="width:40px;"><b> <%= sortable("status") %></b></td>
22 <td style="width:160px;"><b> <%= sortable("report_count", "Number of Reports") %></b></td>
23 <td style="width:141px;"><b> <%= sortable("updated_at","Last updated at") %></b></td>
24 <td style="width:140px;"><b> <%= sortable("updated_by","Last updated by") %></b></td>
25 <td style="width:203px;"><b> Link to reports </b></td>
26 <td style="width:128px;"><b> <%= sortable("reported_user_id","Reported User") %> </b></td>
27 <td style="width:67px;"><b> Link to reported instance</b></td>
31 <% @issues.each do |issue| %>
33 <td><%= issue.status.humanize %></td>
34 <td style="text-align:center;"><%= issue.report_count %></td>
35 <td><%= l(issue.updated_at.to_datetime, :format => :friendly) %></td>
36 <td><% if issue.user_updated %> <%= issue.user_updated.display_name %> <% else %> - <% end %></td>
37 <td><%= reports_url(issue) %></td>
38 <td><%= link_to issue.reported_user.display_name , :controller => :user, :action => :view, :display_name => issue.reported_user.display_name %></td>
39 <td><%= instance_url(issue.reportable) %></td>