issue_report.html.erb
75 lines
| 2.9 KiB
| text/plain
|
TextLexer
|
r569 | <h2><%=l(:label_report_plural)%></h2> | ||
|
r330 | <div class="splitcontentleft"> | ||
|
r14686 | <h3> | ||
<%=l(:field_tracker)%> | ||||
|
r14889 | <%= link_to l(:label_details), | ||
project_issues_report_details_path(@project, :detail => 'tracker'), | ||||
:class => 'icon-only icon-zoom-in', | ||||
:title => l(:label_details) %> | ||||
|
r14686 | </h3> | ||
|
r330 | <%= render :partial => 'simple', :locals => { :data => @issues_by_tracker, :field_name => "tracker_id", :rows => @trackers } %> | ||
<br /> | ||||
|
r14686 | <h3> | ||
<%=l(:field_priority)%> | ||||
|
r14889 | <%= link_to l(:label_details), | ||
project_issues_report_details_path(@project, :detail => 'priority'), | ||||
:class => 'icon-only icon-zoom-in', | ||||
:title => l(:label_details) %> | ||||
|
r14686 | </h3> | ||
|
r1038 | <%= render :partial => 'simple', :locals => { :data => @issues_by_priority, :field_name => "priority_id", :rows => @priorities } %> | ||
<br /> | ||||
|
r14686 | <h3> | ||
<%=l(:field_assigned_to)%> | ||||
|
r14889 | <%= link_to l(:label_details), | ||
project_issues_report_details_path(@project, :detail => 'assigned_to'), | ||||
:class => 'icon-only icon-zoom-in', | ||||
:title => l(:label_details) %> | ||||
|
r14686 | </h3> | ||
|
r1038 | <%= render :partial => 'simple', :locals => { :data => @issues_by_assigned_to, :field_name => "assigned_to_id", :rows => @assignees } %> | ||
|
r540 | <br /> | ||
|
r14686 | <h3> | ||
<%=l(:field_author)%> | ||||
|
r14889 | <%= link_to l(:label_details), | ||
project_issues_report_details_path(@project, :detail => 'author'), | ||||
:class => 'icon-only icon-zoom-in', | ||||
:title => l(:label_details) %> | ||||
|
r14686 | </h3> | ||
|
r330 | <%= render :partial => 'simple', :locals => { :data => @issues_by_author, :field_name => "author_id", :rows => @authors } %> | ||
<br /> | ||||
|
r3683 | <%= call_hook(:view_reports_issue_report_split_content_left, :project => @project) %> | ||
|
r330 | </div> | ||
<div class="splitcontentright"> | ||||
|
r14686 | <h3> | ||
<%=l(:field_version)%> | ||||
|
r14889 | <%= link_to l(:label_details), | ||
project_issues_report_details_path(@project, :detail => 'version'), | ||||
:class => 'icon-only icon-zoom-in', | ||||
:title => l(:label_details) %> | ||||
|
r14686 | </h3> | ||
|
r1038 | <%= render :partial => 'simple', :locals => { :data => @issues_by_version, :field_name => "fixed_version_id", :rows => @versions } %> | ||
|
r330 | <br /> | ||
|
r407 | <% if @project.children.any? %> | ||
|
r14686 | <h3> | ||
<%=l(:field_subproject)%> | ||||
|
r14889 | <%= link_to l(:label_details), | ||
project_issues_report_details_path(@project, :detail => 'subproject'), | ||||
:class => 'icon-only icon-zoom-in', | ||||
:title => l(:label_details) %> | ||||
|
r14686 | </h3> | ||
|
r407 | <%= render :partial => 'simple', :locals => { :data => @issues_by_subproject, :field_name => "project_id", :rows => @subprojects } %> | ||
<br /> | ||||
<% end %> | ||||
|
r14686 | <h3> | ||
<%=l(:field_category)%> | ||||
|
r14889 | <%= link_to l(:label_details), | ||
project_issues_report_details_path(@project, :detail => 'category'), | ||||
:class => 'icon-only icon-zoom-in', | ||||
:title => l(:label_details) %> | ||||
|
r14686 | </h3> | ||
|
r330 | <%= render :partial => 'simple', :locals => { :data => @issues_by_category, :field_name => "category_id", :rows => @categories } %> | ||
<br /> | ||||
|
r3683 | <%= call_hook(:view_reports_issue_report_split_content_right, :project => @project) %> | ||
|
r330 | </div> | ||