1 <h1><%= @heading %></h1>
2 <p><%= raw @description %></p>
4 <%= render :partial => 'notes_paging_nav' %>
6 <table id="note_list" cellpadding="3">
9 <th><%= t'note.mine.id' %></th>
10 <th><%= t'changeset.changesets.user' %></th>
11 <th><%= t'changeset.changesets.comment' %></th>
12 <th><%= t'changeset.changesets.saved_at' %></th>
13 <th><%= t'note.mine.last_changed' %></th>
15 <% @notes.each do |note| -%>
16 <tr<% if note.author != @user2 %> bgcolor="#EEEEEE"<% end %>>
18 <% if note.status == "closed" %>
19 <%= image_tag("closed_note_marker.png", :alt => 'closed') %>
21 <%= image_tag("open_note_marker.png", :alt => 'open') %>
24 <td><%= link_to note.id.to_s, :controller => "browse", :action => "note", :id => note.id %></td>
25 <% if note.author.nil? %>
28 <td><%= link_to h(note.author.display_name), user_url(:display_name => note.author.display_name) %></td>
30 <td> <%= note.comments.first.body.to_html %> </td>
31 <td><%= l note.created_at %></td>
32 <td><%= l note.updated_at %></td>
37 <%= render :partial => 'notes_paging_nav' %>