]> git.openstreetmap.org Git - rails.git/blob - app/views/issues/show.html.erb
Remove string interpolation from issue heading
[rails.git] / app / views / issues / show.html.erb
1 <% content_for :heading do %>
2 <h1><%= t ".title", :status => @issue.status.humanize, :issue_id => @issue.id %></h1>
3 <p><%= @issue.reportable.model_name.human %> : <%= link_to reportable_title(@issue.reportable), reportable_url(@issue.reportable) %></p>
4 <p class="text-muted">
5   <small>
6     <%= @issue.assigned_role %>
7     <% if @issue.reports.count > 0 %>
8       | <%= t ".reports", :count => @issue.reports.count %>
9     <% else %>
10       | <%= t ".no_reports" %>
11     <% end %>
12       | <%= t ".report_created_at",
13               :datetime => l(@issue.created_at.to_datetime, :format => :friendly) %>
14     <% if @issue.resolved_at? %>
15       | <%= t ".last_resolved_at",
16               :datetime => l(@issue.resolved_at.to_datetime, :format => :friendly) %>
17     <% end %>
18     <% if @issue.user_updated %>
19       | <%= t ".last_updated_at",
20               :datetime => l(@issue.updated_at.to_datetime, :format => :friendly),
21               :displayname => @issue.user_updated.display_name %>
22     <% end %>
23   </small>
24 </p>
25 <nav class="secondary-actions">
26   <ul class="clearfix">
27     <% if @issue.may_resolve? %>
28       <li><%= link_to t(".resolve"), resolve_issue_url(@issue), :method => :post %></li>
29     <% end %>
30     <% if @issue.may_ignore? %>
31       <li><%= link_to t(".ignore"), ignore_issue_url(@issue), :method => :post %></li>
32     <% end %>
33     <% if @issue.may_reopen? %>
34       <li><%= link_to t(".reopen"), reopen_issue_url(@issue), :method => :post %></li>
35     <% end %>
36   </ul>
37 </nav>
38 <% end %>
39
40 <div class="row">
41   <div class="col-md-8">
42     <h3><%= t ".reports_of_this_issue" %></h3>
43
44     <% if @read_reports.present? %>
45     <div class="bg-light text-muted">
46       <h4><%= t ".read_reports" %></h4>
47       <%= render "reports", :reports => @read_reports %>
48     </div>
49     <% end %>
50
51     <% if @unread_reports.any? %>
52     <div>
53       <h4><%= t ".new_reports" %></h4>
54       <%= render "reports", :reports => @unread_reports %>
55     </div>
56     <% end %>
57   </div>
58
59   <% if @issue.reported_user %>
60     <div class="col-md-4">
61       <h3><%= t ".other_issues_against_this_user" %></h3>
62       <% if @related_issues.count > 1 %>
63         <ul>
64           <% @related_issues.each do |issue| %>
65             <% if issue.id != @issue.id %>
66               <li><%= link_to reportable_title(issue.reportable), issue %></li>
67             <% end %>
68           <% end %>
69         </ul>
70       <% else %>
71         <p><%= t ".no_other_issues" %></p>
72       <% end %>
73     </div>
74   <% end %>
75 </div>
76
77 <h3><%= t ".comments_on_this_issue" %></h3>
78 <%= render "comments", :comments => @comments %>