##// END OF EJS Templates
Fixed: reminder mails are not sent when delivery_method is :async_smtp (#5058)....
Fixed: reminder mails are not sent when delivery_method is :async_smtp (#5058). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9367 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6483:f6f46afe44ba
r9233:fde9c7315ac6
Show More
issue_report.html.erb
33 lines | 2.2 KiB | text/plain | TextLexer
/ app / views / reports / issue_report.html.erb
Jean-Philippe Lang
Added time report....
r569 <h2><%=l(:label_report_plural)%></h2>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="splitcontentleft">
Eric Davis
Fixed the link to the Issue Details report, broken in r3396...
r3286 <h3><%=l(:field_tracker)%>&nbsp;&nbsp;<%= link_to image_tag('zoom_in.png'), :action => 'issue_report_details', :detail => 'tracker' %></h3>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= render :partial => 'simple', :locals => { :data => @issues_by_tracker, :field_name => "tracker_id", :rows => @trackers } %>
<br />
Eric Davis
Fixed the link to the Issue Details report, broken in r3396...
r3286 <h3><%=l(:field_priority)%>&nbsp;&nbsp;<%= link_to image_tag('zoom_in.png'), :action => 'issue_report_details', :detail => 'priority' %></h3>
Jean-Philippe Lang
Added details by assignees on issue summary view (Hans Yoon)....
r1038 <%= render :partial => 'simple', :locals => { :data => @issues_by_priority, :field_name => "priority_id", :rows => @priorities } %>
<br />
Eric Davis
Fixed the link to the Issue Details report, broken in r3396...
r3286 <h3><%=l(:field_assigned_to)%>&nbsp;&nbsp;<%= link_to image_tag('zoom_in.png'), :action => 'issue_report_details', :detail => 'assigned_to' %></h3>
Jean-Philippe Lang
Added details by assignees on issue summary view (Hans Yoon)....
r1038 <%= render :partial => 'simple', :locals => { :data => @issues_by_assigned_to, :field_name => "assigned_to_id", :rows => @assignees } %>
Jean-Philippe Lang
Added issue count details for versions on Reports view....
r540 <br />
Eric Davis
Fixed the link to the Issue Details report, broken in r3396...
r3286 <h3><%=l(:field_author)%>&nbsp;&nbsp;<%= link_to image_tag('zoom_in.png'), :action => 'issue_report_details', :detail => 'author' %></h3>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= render :partial => 'simple', :locals => { :data => @issues_by_author, :field_name => "author_id", :rows => @authors } %>
<br />
Eric Davis
Added two hooks to the issues report. #5233...
r3683 <%= call_hook(:view_reports_issue_report_split_content_left, :project => @project) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<div class="splitcontentright">
Eric Davis
Fixed the link to the Issue Details report, broken in r3396...
r3286 <h3><%=l(:field_version)%>&nbsp;&nbsp;<%= link_to image_tag('zoom_in.png'), :action => 'issue_report_details', :detail => 'version' %></h3>
Jean-Philippe Lang
Added details by assignees on issue summary view (Hans Yoon)....
r1038 <%= render :partial => 'simple', :locals => { :data => @issues_by_version, :field_name => "fixed_version_id", :rows => @versions } %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <br />
Jean-Philippe Lang
Added subprojects issue count on project "Reports" page...
r407 <% if @project.children.any? %>
Eric Davis
Fixed the link to the Issue Details report, broken in r3396...
r3286 <h3><%=l(:field_subproject)%>&nbsp;&nbsp;<%= link_to image_tag('zoom_in.png'), :action => 'issue_report_details', :detail => 'subproject' %></h3>
Jean-Philippe Lang
Added subprojects issue count on project "Reports" page...
r407 <%= render :partial => 'simple', :locals => { :data => @issues_by_subproject, :field_name => "project_id", :rows => @subprojects } %>
<br />
<% end %>
Eric Davis
Fixed the link to the Issue Details report, broken in r3396...
r3286 <h3><%=l(:field_category)%>&nbsp;&nbsp;<%= link_to image_tag('zoom_in.png'), :action => 'issue_report_details', :detail => 'category' %></h3>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= render :partial => 'simple', :locals => { :data => @issues_by_category, :field_name => "category_id", :rows => @categories } %>
<br />
Eric Davis
Added two hooks to the issues report. #5233...
r3683 <%= call_hook(:view_reports_issue_report_split_content_right, :project => @project) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>