Slight changes to the issue lists displayed on My page.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2451 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2009-02-11 20:25:05 +00:00
parent f1b8bf22a2
commit 4500b606ce
1 changed files with 6 additions and 5 deletions

View File

@ -3,6 +3,7 @@
<table class="list issues"> <table class="list issues">
<thead><tr> <thead><tr>
<th>#</th> <th>#</th>
<th><%=l(:field_project)%></th>
<th><%=l(:field_tracker)%></th> <th><%=l(:field_tracker)%></th>
<th><%=l(:field_subject)%></th> <th><%=l(:field_subject)%></th>
</tr></thead> </tr></thead>
@ -13,10 +14,10 @@
<%= check_box_tag("ids[]", issue.id, false, :style => 'display:none;') %> <%= check_box_tag("ids[]", issue.id, false, :style => 'display:none;') %>
<%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %> <%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %>
</td> </td>
<td><%=h issue.project.name %> - <%= issue.tracker.name %><br /> <td class="project"><%=h issue.project %></td>
<%= issue.status.name %> - <%= format_time(issue.updated_on) %></td> <td class="tracker"><%=h issue.tracker %></td>
<td class="subject"> <td class="subject">
<%= link_to h(issue.subject), :controller => 'issues', :action => 'show', :id => issue %> <%= link_to h(truncate(issue.subject, 60)), :controller => 'issues', :action => 'show', :id => issue %> (<%=h issue.status %>)
</td> </td>
</tr> </tr>
<% end %> <% end %>