summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-02-11 20:25:05 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-02-11 20:25:05 +0000
commit4500b606ce263799bb1b0f54a3fdb6d20782cee5 (patch)
tree2be84001f6880a982dca9fdf788b3670f5e1bf93 /app
parentf1b8bf22a2925c5d863c86b0d496abb1b1feac06 (diff)
downloadredmine-4500b606ce263799bb1b0f54a3fdb6d20782cee5.tar.gz
redmine-4500b606ce263799bb1b0f54a3fdb6d20782cee5.zip
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
Diffstat (limited to 'app')
-rw-r--r--app/views/issues/_list_simple.rhtml11
1 files changed, 6 insertions, 5 deletions
diff --git a/app/views/issues/_list_simple.rhtml b/app/views/issues/_list_simple.rhtml
index e401a4a2a..64c00e5a7 100644
--- a/app/views/issues/_list_simple.rhtml
+++ b/app/views/issues/_list_simple.rhtml
@@ -3,6 +3,7 @@
<table class="list issues">
<thead><tr>
<th>#</th>
+ <th><%=l(:field_project)%></th>
<th><%=l(:field_tracker)%></th>
<th><%=l(:field_subject)%></th>
</tr></thead>
@@ -10,14 +11,14 @@
<% for issue in issues %>
<tr id="issue-<%= issue.id %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= css_issue_classes(issue) %>">
<td class="id">
- <%= 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 %>
</td>
- <td><%=h issue.project.name %> - <%= issue.tracker.name %><br />
- <%= issue.status.name %> - <%= format_time(issue.updated_on) %></td>
+ <td class="project"><%=h issue.project %></td>
+ <td class="tracker"><%=h issue.tracker %></td>
<td class="subject">
- <%= link_to h(issue.subject), :controller => 'issues', :action => 'show', :id => issue %>
- </td>
+ <%= link_to h(truncate(issue.subject, 60)), :controller => 'issues', :action => 'show', :id => issue %> (<%=h issue.status %>)
+ </td>
</tr>
<% end %>
</tbody>