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>
17 <% @bugs.each do |bug| %>
18 <% if bug.map_bug_comment[0].user == @user2 %>
24 <% if bug.status == "closed" %>
25 <%= image_tag("closed_bug_marker.png", :alt => 'closed') %>
27 <%= image_tag("open_bug_marker.png", :alt => 'open') %>
30 <td><%= link_to bug.id.to_s, :controller => "browse", :action => "bug", :id => bug.id %></td>
32 <% if bug.map_bug_comment[0].user.nil? %>
33 <td> <%= bug.map_bug_comment[0].commenter_name %> </td>
35 <td><%= link_to h(bug.map_bug_comment[0].user.display_name), :controller => "user", :action => "view", :display_name => bug.map_bug_comment[0].user.display_name %></td>
37 <td> <%= htmlize bug.map_bug_comment[0].comment %> </td>
38 <td><%= l bug.date_created %></td>
39 <td><%= l bug.last_changed %></td>
45 <%= render :partial => 'bugs_paging_nav' %>