]> git.openstreetmap.org Git - rails.git/blob - app/views/issues/index.html.erb
Show issues based on all the users roles
[rails.git] / app / views / issues / index.html.erb
1 <% content_for :heading do %>
2   <h1>List of issues:</h1>
3 <% end %>
4
5 <%= form_tag(issues_path, :method => :get) do %>
6 Search for a particular issue(s):  <br/>
7 <%= select :status, nil, [['open', 0],['resolved',2],['ignored',1]],{:include_blank => "Select status"},data: { behavior: 'category_dropdown' } %>
8 <%= select :issue_type, nil, @issue_types,{:include_blank => "Select type"}, data: { behavior: 'category_dropdown' } %>
9 <%= text_field_tag :search_by_user, params[:search_by_user], placeholder: "Reported User" %>
10 <%= 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' } %>
11 <%= submit_tag "Search" %>
12 <% end %>
13 <br/>
14
15 <% if @issues.length == 0 %>
16   <p><%= t ".search.issues_not_found" %></p>
17 <% end %>
18
19 <br/>
20
21 <table>
22   <thead>
23     <tr>
24       <td><b>Status</b></td>
25       <td><b>Number of Reports</b></td>
26       <td><b>Last updated at</b></td>
27       <td><b>Last updated by</b></td>
28       <td><b>Link to reports</b></td>
29       <td><b>Reported User</b></td>
30       <td><b>Link to reported instance</b></td>
31     </tr>
32   </thead>
33   <tbody>
34     <% @issues.each do |issue| %>
35       <tr>
36         <td><%= issue.status.humanize %></td>
37         <td style="text-align:center;"><%= issue.reports_count %></td>
38         <td><%= l(issue.updated_at.to_datetime, :format => :friendly) %></td>
39         <td><% if issue.user_updated %> <%= issue.user_updated.display_name %> <% else %> - <% end %></td>
40         <td><%= reports_url(issue) %></td>
41         <td><%= link_to issue.reported_user.display_name , :controller => :user, :action => :view, :display_name => issue.reported_user.display_name %></td>
42         <td><%= instance_url(issue.reportable) %></td>
43       </tr>
44     <% end %>
45   </tbody>
46 </table>