]> source.dussan.org Git - redmine.git/commitdiff
issue links modified on activity, calendar and gantt views
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 29 Nov 2006 20:02:55 +0000 (20:02 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 29 Nov 2006 20:02:55 +0000 (20:02 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@56 e93f8b46-1217-0410-a6f0-8f06a7374b81

redmine/app/views/projects/activity.rhtml
redmine/app/views/projects/calendar.rhtml
redmine/app/views/projects/gantt.rhtml

index 670e572aeeed5591752442db938325aa31094df8..d6e5a1a43c158b0d9eeb5142aac66a932c76bb37 100644 (file)
@@ -18,7 +18,7 @@
   <% @events_by_day[day].sort {|x,y| y.created_on <=> x.created_on }.each do |e| %>\r
     <li><p>\r
     <% if e.is_a? Issue %>\r
-      <%= e.created_on.strftime("%H:%M") %> <%= e.tracker.name %> <%= link_to e.long_id, :controller => 'issues', :action => 'show', :id => e %> (<%= e.status.name %>): <%= e.subject %><br />\r
+      <%= e.created_on.strftime("%H:%M") %> <%= link_to "#{e.tracker.name} ##{e.id}", :controller => 'issues', :action => 'show', :id => e %> (<%= e.status.name %>): <%= e.subject %><br />\r
           <i><%= e.author.name %></i>\r
     <% elsif e.is_a? News %>\r
       <%= e.created_on.strftime("%H:%M") %> <%=l(:label_news)%>: <%= link_to e.title, :controller => 'news', :action => 'show', :id => e %><br />\r
index 236184fa350e4949ff00b5f0da70ad7a52eac97e..a42a95e4c97f4b8f9e251d9c8c0cce031f4fb7e7 100644 (file)
@@ -42,7 +42,7 @@ while day <= @date_to
                elsif day == i.due_date\r
                    image_tag('arrow_to') \r
                end %>\r
-               <%= i.tracker.name %> <%= link_to i.id, :controller => 'issues', :action => 'show', :id => i %>: <small><%= i.subject.sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)') %></small><br />\r
+               <small><%= link_to "#{i.tracker.name} ##{i.id}", :controller => 'issues', :action => 'show', :id => i %>: <%= i.subject.sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)') %></small><br />\r
        <% end %>\r
     </td>\r
        <%= '</tr><tr height="100">' if day.cwday >= 7 and day!=@date_to %>\r
index cb515cd7e0d46580f01073855f798e1d63fd2207..6aa271add5d4720bf398bd000174af0a05b2754a 100644 (file)
@@ -102,7 +102,7 @@ t_height = g_height + headers_heigth
 top = headers_heigth + 8\r
 @issues.each do |i| %>\r
        <div style="position: absolute;line-height:1em;height:16px;top:<%= top %>px;left:4px;width:<%= subject_width - 5 %>px;overflow:hidden;">\r
-       <small><%= link_to i.id, :controller => 'issues', :action => 'show', :id => i %>\r
+       <small><%= link_to "#{i.tracker.name} ##{i.id}", :controller => 'issues', :action => 'show', :id => i %>:\r
        <%= i.subject.sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)') %></small>\r
        </div>\r
 <% top = top + 20\r