]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/issues/index.html.erb
User user_path to generate links to users
[rails.git] / app / views / issues / index.html.erb
index 98fbbaa2d345525ffc4e266fcc0c6fda4bd75cc5..30b283324822c39ca693fc0c10f7dc03facc2a0e 100644 (file)
@@ -1,41 +1,51 @@
-<p id= "notice"><%= notice %></p>
-
 <% content_for :heading do %>
-       <h1>List of <%= @user_role %> issues:</h1>
+  <h1><%= t ".title" %></h1>
 <% end %>
 
 <%= form_tag(issues_path, :method => :get) do %>
-       <%= text_field_tag :search_by_user, params[:search_by_user], placeholder: "Search by Reported User" %>
-       <%= submit_tag "Search" %>
+<p><%= t ".search_guidance" %></p>
+<%= select :status, nil, Issue.aasm.states.map(&:name).map{|state| [t("issues.states.#{state}"), state]}, { :include_blank => t(".select_status")}, data: { behavior: 'category_dropdown' } %>
+<%= select :issue_type, nil, @issue_types, { :include_blank => t(".select_type")}, data: { behavior: 'category_dropdown' } %>
+<%= text_field_tag :search_by_user, params[:search_by_user], placeholder: t(".reported_user") %>
+<%= select :last_updated_by, nil, @users.all.collect  {|f| [f.display_name, f.id]} << [ t(".not_updated"), "nil"], { :include_blank => t(".select_last_updated_by")}, data: { behavior: 'category_dropdown' } %>
+<%= submit_tag t(".search") %>
 <% end %>
 <br/>
-<br/>
 
-<table>
-       <thead>
-               <tr>
-                       <tr>
-                               <td><b> Status </b></td>
-                               <td><b> Number of Reports</b></td>
-                               <td><b> Last updated at</b></td>
-                               <td><b> Link to instance </b></td>
-                               <td><b> Reported User </b></td>
-                               <td></td>
-                       </tr>
-               </tr>
-       </thead>
-       <tbody>
-               <% @issues.each do |issue| %>
-                       <tr>
-                               <td><span class="count-number"> <strong><%= issue.status %></strong></span> </td>
-                               <td><%= issue.reports.count %></td>
-                               <td><%= issue.updated_at.strftime('%H:%M, %m/%d/%y') %></td>
-                               <td> <%= reportable_url(issue.reportable) %></td>
-                               <td><%= link_to issue.user.display_name , :controller => :user, :action => :view,:display_name => issue.user.display_name %></td>
-                               <td><b><%= link_to "Show Reports", issue %></b></td>
-                       </tr>
-               <% end %>
-       </tbody>
-</table>
+<% if @issues.length == 0 %>
+  <p><%= t ".issues_not_found" %></p>
+<% end %>
 
+<br/>
 
+<table class="issues-list">
+  <thead>
+    <tr>
+      <td><b><%= t ".status" %></b></td>
+      <td><b><%= t ".reports" %></b></td>
+      <td><b><%= t ".reported_item" %></b></td>
+      <td><b><%= t ".reported_user" %></b></td>
+      <td><b><%= t ".last_updated" %></b></td>
+    </tr>
+  </thead>
+  <tbody>
+    <% @issues.each do |issue| %>
+      <tr>
+        <td><%= t "issues.states.#{issue.status}" %></td>
+        <td><%= link_to t(".reports_count", :count => issue.reports_count), issue %></td>
+        <td><%= link_to reportable_title(issue.reportable), reportable_url(issue.reportable) %></td>
+        <td><%= link_to issue.reported_user.display_name, user_path(issue.reported_user.display_name) if issue.reported_user %></td>
+        <td>
+          <% if issue.user_updated %>
+            <%= t ".last_updated_time_user_html", :user => link_to(issue.user_updated.display_name, user_path(issue.user_updated.display_name)),
+                                                  :time => distance_of_time_in_words_to_now(issue.updated_at),
+                                                  :title => l(issue.updated_at) %>
+          <% else %>
+            <%= t ".last_updated_time_html", :time => distance_of_time_in_words_to_now(issue.updated_at),
+                                             :title => l(issue.updated_at) %>
+          <% end %>
+        </td>
+      </tr>
+    <% end %>
+  </tbody>
+</table>