1 <% content_for :heading do %>
2 <h1><%= t ".title" %></h1>
5 <p><%= t ".search_guidance" %></p>
7 <%= form_tag(issues_path, :method => :get) do %>
9 <div class="form-group col-md-auto">
10 <%= select_tag :status,
11 options_for_select(Issue.aasm.states.map(&:name).map { |state| [t(".states.#{state}"), state] }, params[:status]),
12 :include_blank => t(".select_status"),
13 :data => { :behavior => "category_dropdown" },
14 :class => "form-control custom-select" %>
16 <div class="form-group col-md-auto">
17 <%= select_tag :issue_type,
18 options_for_select(@issue_types, params[:issue_type]),
19 :include_blank => t(".select_type"),
20 :data => { :behavior => "category_dropdown" },
21 :class => "form-control custom-select" %>
23 <div class="form-group col-md">
24 <%= text_field_tag :search_by_user,
25 params[:search_by_user],
26 :placeholder => t(".reported_user"),
27 :autocomplete => "on",
28 :class => "form-control" %>
30 <div class="form-group col-md-auto">
31 <%= select_tag :last_updated_by,
32 options_for_select(@users.all.collect { |f| [f.display_name, f.id] } << [t(".not_updated"), "nil"], params[:last_updated_by]),
33 :include_blank => t(".select_last_updated_by"),
34 :data => { :behavior => "category_dropdown" },
35 :class => "form-control custom-select" %>
37 <div class="form-group col-md-auto">
38 <%= submit_tag t(".search"), :name => nil, :class => "btn btn-primary" %>
43 <% if @issues.length == 0 %>
44 <p><%= t ".issues_not_found" %></p>
46 <table class="table table-sm">
49 <th><%= t ".status" %></th>
50 <th><%= t ".reports" %></th>
51 <th><%= t ".reported_item" %></th>
52 <th><%= t ".reported_user" %></th>
53 <th><%= t ".last_updated" %></th>
57 <% @issues.each do |issue| %>
59 <td><%= t ".states.#{issue.status}" %></td>
60 <td class="text-nowrap"><%= link_to t(".reports_count", :count => issue.reports_count), issue %></td>
61 <td><%= link_to reportable_title(issue.reportable), reportable_url(issue.reportable) %></td>
62 <td><%= link_to issue.reported_user.display_name, user_path(issue.reported_user) if issue.reported_user %></td>
64 <% if issue.user_updated %>
65 <%= t ".last_updated_time_user_html", :user => link_to(issue.user_updated.display_name, user_path(issue.user_updated)),
66 :time => time_ago_in_words(issue.updated_at, :scope => :"datetime.distance_in_words_ago"),
67 :title => l(issue.updated_at) %>
69 <%= t ".last_updated_time_html", :time => time_ago_in_words(issue.updated_at, :scope => :"datetime.distance_in_words_ago"),
70 :title => l(issue.updated_at) %>