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 :class => "form-control" %>
29 <div class="form-group col-md-auto">
30 <%= select_tag :last_updated_by,
31 options_for_select(@users.all.collect { |f| [f.display_name, f.id] } << [t(".not_updated"), "nil"], params[:last_updated_by]),
32 :include_blank => t(".select_last_updated_by"),
33 :data => { :behavior => "category_dropdown" },
34 :class => "form-control custom-select" %>
36 <div class="form-group col-md-auto">
37 <%= submit_tag t(".search"), :name => nil, :class => "btn btn-primary" %>
42 <% if @issues.length == 0 %>
43 <p><%= t ".issues_not_found" %></p>
45 <table class="table table-sm">
48 <th><%= t ".status" %></th>
49 <th><%= t ".reports" %></th>
50 <th><%= t ".reported_item" %></th>
51 <th><%= t ".reported_user" %></th>
52 <th><%= t ".last_updated" %></th>
56 <% @issues.each do |issue| %>
58 <td><%= t ".states.#{issue.status}" %></td>
59 <td class="text-nowrap"><%= link_to t(".reports_count", :count => issue.reports_count), issue %></td>
60 <td><%= link_to reportable_title(issue.reportable), reportable_url(issue.reportable) %></td>
61 <td><%= link_to issue.reported_user.display_name, user_path(issue.reported_user) if issue.reported_user %></td>
63 <% if issue.user_updated %>
64 <%= t ".last_updated_time_user_html", :user => link_to(issue.user_updated.display_name, user_path(issue.user_updated)),
65 :time => time_ago_in_words(issue.updated_at, :scope => :"datetime.distance_in_words_ago"),
66 :title => l(issue.updated_at) %>
68 <%= t ".last_updated_time_html", :time => time_ago_in_words(issue.updated_at, :scope => :"datetime.distance_in_words_ago"),
69 :title => l(issue.updated_at) %>