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