]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/note.html.erb
Remove unused stylesheet rules
[rails.git] / app / views / browse / note.html.erb
1 <%= render :partial => "navigation" %>
2
3 <h2>
4   <%= image_tag "#{@note.status}_note_marker.png", :alt => @note.status %>
5   <%= t "browse.note.#{@note.status}_title", :note_name => @note.id %>
6 </h2>
7
8 <%= render :partial => "map", :object => @note %>
9
10 <table class="browse_details">
11
12   <tr>
13     <th><%= t "browse.note.opened" %></th>
14     <td><%= t "browse.note.at_by", :when => friendly_date(@note.created_at), :user => note_author(@note) %></td>
15   </tr>  
16
17   <% if @note.status == "closed" %>
18     <tr>
19       <th><%= t "browse.note.closed" %></th>
20       <td><%= t "browse.note.at_by", :when => friendly_date(@note.closed_at), :user => note_author(@note.comments.last) %></td>
21     </tr>  
22   <% elsif @note.comments.length > 1 %>
23     <tr>
24       <th><%= t "browse.note.last_modified" %></th>
25       <td><%= t "browse.note.at_by", :when => friendly_date(@note.updated_at), :user => note_author(@note.comments.last) %></td>
26     </tr>  
27   <% end %>
28
29   <tr>
30     <th><%= t "browse.note.description" %></th>
31     <td><%= h(@note.comments.first.body) %></td>
32   </tr>
33
34   <tr>
35     <th><%= t "browse.node_details.coordinates" %></th>
36     <td><div class="geo"><%= link_to ("<span class='latitude'>#{number_with_delimiter(@note.lat)}</span>, <span class='longitude'>#{number_with_delimiter(@note.lon)}</span>"), {:controller => 'site', :action => 'index', :lat => h(@note.lat), :lon => h(@note.lon), :zoom => "18"} %></div></td>
37   </tr>
38
39   <% if @note.comments.length > 1 %>
40     <tr valign="top">
41       <th><%= t "browse.note.comments" %></th>
42       <td class="browse_comments">
43         <table>
44           <% @note.comments[1..-1].each do |comment| %>
45             <tr>
46               <td>
47                 <%= h(comment.body) %>
48                 <br />
49                 <span class="by"><%= t "browse.note.at_by", :when => friendly_date(comment.created_at), :user => note_author(comment) %></span>
50               </td>
51             </tr>
52           <% end %>
53         </table>
54       </td>
55     </tr>
56   <% end %>
57
58 </table>