1 <h1><%= @heading %></h1>
2 <p><%= @description %></p>
4 <%= render :partial => 'bugs_paging_nav' %>
6 <table id="bug_list" cellpadding="3">
9 <th><%= t'bugs.user.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'bugs.user.last_changed' %></th>
15 <% @bugs.each do |bug| %>
16 <tr<% if bug.author != @user2 %> bgcolor="#EEEEEE"<% end %>>
18 <% if bug.status == "closed" %>
19 <%= image_tag("closed_bug_marker.png", :alt => 'closed') %>
21 <%= image_tag("open_bug_marker.png", :alt => 'open') %>
24 <td><%= link_to bug.id.to_s, :controller => "browse", :action => "bug", :id => bug.id %></td>
25 <% if bug.author.nil? %>
26 <td> <%= bug.author_name %> </td>
28 <td><%= link_to h(bug.author_name), :controller => "user", :action => "view", :display_name => bug.author_name %></td>
30 <td> <%= htmlize bug.comments.first.body %> </td>
31 <td><%= l bug.created_at %></td>
32 <td><%= l bug.updated_at %></td>
37 <%= render :partial => 'bugs_paging_nav' %>