]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/note.html.erb
fb186e55e49130f1360939fe687c815cd890f300
[rails.git] / app / views / browse / note.html.erb
1 <% set_title(t(".title", :id => @note.id)) %>
2
3 <%= render "sidebar_header", :title => t(".#{@note.status}_title", :note_name => @note.id) %>
4
5 <div>
6   <h4><%= t(".description") %></h4>
7   <div class="note-description">
8     <%= h(@note_comments.first.body.to_html) %>
9   </div>
10
11   <div class="details" data-coordinates="<%= @note.lat %>,<%= @note.lon %>" data-status="<%= @note.status %>">
12     <ul class="list-unstyled">
13       <li><%= note_event("opened", @note.created_at, @note.author) %></li>
14       <% if @note.status == "closed" %>
15         <li><%= note_event(@note.status, @note.closed_at, @note.all_comments.last.author) %></li>
16       <% end %>
17       <li>
18         <%= t "browse.location" %>
19         <%= link_to(t(".coordinates_html",
20                       :latitude => tag.span(number_with_delimiter(@note.lat), :class => "latitude"),
21                       :longitude => tag.span(number_with_delimiter(@note.lon), :class => "longitude")),
22                     root_path(:anchor => "map=18/#{@note.lat}/#{@note.lon}")) %>
23       </li>
24     </ul>
25   </div>
26
27   <% if @note_comments.find { |comment| comment.author.nil? } -%>
28     <p class='alert alert-warning'><%= t "javascripts.notes.show.anonymous_warning" %></p>
29   <% end -%>
30
31   <% if @note_comments.length > 1 %>
32     <div class='note-comments'>
33       <ul class="list-unstyled">
34         <% @note_comments.drop(1).each do |comment| %>
35           <li id="c<%= comment.id %>">
36             <small class='text-muted'><%= note_event(comment.event, comment.created_at, comment.author) %></small>
37             <%= comment.body.to_html %>
38           </li>
39         <% end %>
40       </ul>
41     </div>
42   <% end %>
43
44   <% if @note.status == "open" %>
45     <% if current_user -%>
46       <form class="mb-3" action="#">
47         <div class="mb-3">
48           <textarea class="form-control" name="text" cols="40" rows="5" maxlength="2000"></textarea>
49         </div>
50         <div class="btn-wrapper">
51           <% if current_user.moderator? -%>
52             <input type="submit" name="hide" value="<%= t("javascripts.notes.show.hide") %>" class="btn btn-light" data-note-id="<%= @note.id %>" data-method="DELETE" data-url="<%= note_url(@note, "json") %>">
53           <% end -%>
54           <input type="submit" name="close" value="<%= t("javascripts.notes.show.resolve") %>" class="btn btn-primary" data-note-id="<%= @note.id %>" data-method="POST" data-url="<%= close_note_url(@note, "json") %>">
55           <input type="submit" name="comment" value="<%= t("javascripts.notes.show.comment") %>" class="btn btn-primary" data-note-id="<%= @note.id %>" data-method="POST" data-url="<%= comment_note_url(@note, "json") %>" disabled="1">
56         </div>
57       </form>
58     <% end -%>
59   <% else %>
60     <form class="mb-3" action="#">
61       <input type="hidden" name="text" value="" autocomplete="off">
62       <div class="btn-wrapper">
63         <% if current_user and current_user.moderator? -%>
64           <input type="submit" name="hide" value="<%= t("javascripts.notes.show.hide") %>" class="btn btn-light" data-note-id="<%= @note.id %>" data-method="DELETE" data-url="<%= note_url(@note, "json") %>">
65         <% end -%>
66         <% if current_user -%>
67           <input type="submit" name="reopen" value="<%= t("javascripts.notes.show.reactivate") %>" class="btn btn-primary" data-note-id="<%= @note.id %>" data-method="POST" data-url="<%= reopen_note_url(@note, "json") %>">
68         <% end -%>
69       </div>
70     </form>
71   <% end %>
72
73   <% if current_user && current_user != @note.author %>
74     <p><small class="text-muted"><%= t "javascripts.notes.show.report_link_html", :link => report_link(t(".report"), @note) %></small></p>
75   <% end %>
76 </div>