]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/note.html.erb
Factor javascript include tag to layout
[rails.git] / app / views / browse / note.html.erb
1 <% content_for :head do %>
2   <%= stylesheet_link_tag 'browse' %>
3 <% end %>
4
5 <% content_for :sidebar do %>
6   <h2><%= t "browse.note.#{@note.status}_title", :note_name => @note.id %></h2>
7
8   <% if @note.comments.find { |comment| comment.author.nil? } -%>
9   <div class='browse-section common'>
10     <p class="warning"><%= t "javascripts.notes.show.anonymous_warning" %></p>
11   </div>
12   <% end -%>
13
14   <div class='browse-section common'>
15     <div class='browse-field'>
16       <h4><%= t "browse.note.opened" %></h4>
17       <p><%= note_event(@note.created_at, @note.author) %></p>
18     </div>
19
20     <% if @note.status == "closed" %>
21       <div class='browse-field'>
22         <h4><%= t "browse.note.closed" %></h4>
23         <p><%= note_event(@note.closed_at, @note.comments.last.author) %></p>
24       </div>
25     <% elsif @note.comments.length > 1 %>
26       <div class='browse-field'>
27         <h4><%= t "browse.note.last_modified" %></h4>
28         <p><%= note_event(@note.updated_at, @note.comments.last.author) %></p>
29       </div>
30     <% end %>
31
32     <div class='browse-field' id="c<%= @note.comments.first.id %>">
33       <h4><%= t "browse.note.description" %></h4>
34       <p><%= h(@note.comments.first.body.to_html) %></p>
35     </div>
36
37     <div class='browse-field'>
38       <h4><%= t "browse.node_details.coordinates" %></h4>
39       <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>
40     </div>
41   </div>
42
43   <% if @note.comments.length > 1 %>
44     <div class='browse-section clearfix'>
45       <h4><%= t "browse.note.comments" %></h4>
46       <ul>
47         <% @note.comments[1..-1].each do |comment| %>
48           <li id="c<%= comment.id %>">
49             <%= comment.body.to_html %>
50             <small class="deemphasize"><%= note_event(comment.created_at, comment.author) %></small>
51           </li>
52         <% end %>
53       </ul>
54     </div>
55   <% end %>
56 <% end %>
57
58 <%= render :template => 'layouts/map' %>