]> git.openstreetmap.org Git - rails.git/blob - app/views/issues/index.html.erb
More whitespace fixes. Attempting to get tests to pass.
[rails.git] / app / views / issues / index.html.erb
1 <p id= "notice"><%= notice %></p>
2
3 <% content_for :heading do %>
4   <h1>List of <%= @user_role %> issues:</h1>
5 <% end %>
6
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" %>
14 <% end %>
15 <br/>
16 <br/>
17
18 <table>
19   <thead>
20     <tr>
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>
28     </tr>
29   </thead>
30   <tbody>
31     <% @issues.each do |issue| %>
32       <tr>
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.user.display_name , :controller => :user, :action => :view,:display_name => issue.user.display_name %></td>
39         <td><%= instance_url(issue.reportable) %></td>
40       </tr>
41     <% end %>
42   </tbody>
43 </table>