]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/note.html.erb
Replace Vary header with explicit xhr=1 param
[rails.git] / app / views / browse / note.html.erb
1 <% set_title("#{t('browse.note.title')} | #{@note.id}") %>
2
3 <h2>
4   <a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
5   <%= t "browse.note.#{@note.status}_title", :note_name => @note.id %>
6 </h2>
7 <div class="browse-section">
8   <span>
9     <%= t "browse.note.opened" %>: 
10     <abbr><%= note_event(@note.created_at, @note.author) %></abbr> by 
11     <% if @note.author.nil? %>
12       <%= t "browse.note.anonymous" %>
13     <% else %>
14       <%= note_author(@note.author) %>
15     <% end %>
16     <% if @note.status == "closed" %>
17       </span><span>
18       <%= t "browse.note.closed" %>:
19       <abbr><%= note_event(@note.closed_at, @note.author) %></abbr> by 
20       <%= @note.comments.last.author %>
21     <% end %>
22   </span>
23 </div>
24
25 <% if @note.comments.find { |comment| comment.author.nil? } -%>
26 <div class='browse-section common'>
27   <p class='warning'><%= t "javascripts.notes.show.anonymous_warning" %></p>
28 </div>
29 <% end -%>
30
31 <div class='browse-section common'>
32   <% if @note.status == "closed" %>
33     <div class='browse-field'>
34       <h4><%= t "browse.note.closed" %></h4>
35       <p><%= note_event(@note.closed_at, @note.comments.last.author) %></p>
36     </div>
37   <% elsif @note.comments.length > 1 %>
38     <div class='browse-field'>
39       <h4><%= t "browse.note.last_modified" %></h4>
40       <p><%= note_event(@note.updated_at, @note.comments.last.author) %></p>
41     </div>
42   <% end %>
43
44   <div class='browse-field' id="c<%= @note.comments.first.id %>">
45     <h4><%= t "browse.note.description" %></h4>
46     <%= h(@note.comments.first.body.to_html) %>
47     <!-- this provides it's own <p> tags -->
48   </div>
49
50   <div class='browse-field'>
51     <h4><%= t "browse.node_details.coordinates" %></h4>
52     <p class='geo'><%= link_to ("<span class='latitude'>#{number_with_delimiter(@note.lat)}</span>, <span class='longitude'>#{number_with_delimiter(@note.lon)}</span>".html_safe), {:controller => 'site', :action => 'index', :lat => h(@note.lat), :lon => h(@note.lon), :zoom => "18"} %></p>
53   </div>
54 </div>
55
56 <% if @note.comments.length > 1 %>
57   <div class='browse-section clearfix note-comments'>
58     <h4><%= t "browse.note.comments" %></h4>
59     <ul>
60       <% @note.comments[1..-1].each do |comment| %>
61         <li id="c<%= comment.id %>">
62           <%= comment.body.to_html %>
63           <small class='deemphasize'><%= note_event(comment.created_at, comment.author) %></small>
64         </li>
65       <% end %>
66     </ul>
67   </div>
68 <% end %>