]> git.openstreetmap.org Git - rails.git/blob - app/views/notes/mine.html.erb
Keep the behaviour backwards-compatible
[rails.git] / app / views / notes / mine.html.erb
1 <% content_for :heading do %>
2   <h2><%= t "notes.mine.heading", :user => @user.display_name %></h2>
3   <p><%= t "notes.mine.subheading_html", :user => link_to(@user.display_name, user_path(@user)) %></p>
4 <% end %>
5
6 <%= render :partial => "notes_paging_nav" %>
7
8 <table class="note_list">
9   <tr>
10     <th></th>
11     <th><%= t ".id" %></th>
12     <th><%= t ".creator" %></th>
13     <th><%= t ".description" %></th>
14     <th><%= t ".created_at" %></th>
15     <th><%= t ".last_changed" %></th>
16   </tr>
17 <% @notes.each do |note| -%>
18   <tr<% if note.author == @user %> class="creator"<% end %>>
19     <td>
20       <% if note.closed? %>
21         <%= image_tag("closed_note_marker.png", :alt => "closed", :size => "25x40") %>
22       <% else %>
23         <%= image_tag("open_note_marker.png", :alt => "open", :size => "25x40") %>
24       <% end %>
25     </td>
26     <td><%= link_to note.id, browse_note_path(note) %></td>
27     <td><%= note_author(note.author) %></td>
28     <td><%= note.comments.first.body.to_html %></td>
29     <td><%= friendly_date_ago(note.created_at) %></td>
30     <td><%= friendly_date_ago(note.updated_at) %></td>
31   </tr>
32 <% end -%>
33 </table>
34
35 <%= render :partial => "notes_paging_nav" %>