Redmine 3.4.4
This commit is contained in:
commit
64924a6376
2112 changed files with 259028 additions and 0 deletions
75
app/views/reports/issue_report.html.erb
Normal file
75
app/views/reports/issue_report.html.erb
Normal file
|
@ -0,0 +1,75 @@
|
|||
<h2><%=l(:label_report_plural)%></h2>
|
||||
|
||||
<div class="splitcontentleft">
|
||||
<h3>
|
||||
<%=l(:field_tracker)%>
|
||||
<%= link_to l(:label_details),
|
||||
project_issues_report_details_path(@project, :detail => 'tracker'),
|
||||
:class => 'icon-only icon-zoom-in',
|
||||
:title => l(:label_details) %>
|
||||
</h3>
|
||||
<%= render :partial => 'simple', :locals => { :data => @issues_by_tracker, :field_name => "tracker_id", :rows => @trackers } %>
|
||||
<br />
|
||||
<h3>
|
||||
<%=l(:field_priority)%>
|
||||
<%= link_to l(:label_details),
|
||||
project_issues_report_details_path(@project, :detail => 'priority'),
|
||||
:class => 'icon-only icon-zoom-in',
|
||||
:title => l(:label_details) %>
|
||||
</h3>
|
||||
<%= render :partial => 'simple', :locals => { :data => @issues_by_priority, :field_name => "priority_id", :rows => @priorities } %>
|
||||
<br />
|
||||
<h3>
|
||||
<%=l(:field_assigned_to)%>
|
||||
<%= link_to l(:label_details),
|
||||
project_issues_report_details_path(@project, :detail => 'assigned_to'),
|
||||
:class => 'icon-only icon-zoom-in',
|
||||
:title => l(:label_details) %>
|
||||
</h3>
|
||||
<%= render :partial => 'simple', :locals => { :data => @issues_by_assigned_to, :field_name => "assigned_to_id", :rows => @assignees } %>
|
||||
<br />
|
||||
<h3>
|
||||
<%=l(:field_author)%>
|
||||
<%= link_to l(:label_details),
|
||||
project_issues_report_details_path(@project, :detail => 'author'),
|
||||
:class => 'icon-only icon-zoom-in',
|
||||
:title => l(:label_details) %>
|
||||
</h3>
|
||||
<%= render :partial => 'simple', :locals => { :data => @issues_by_author, :field_name => "author_id", :rows => @authors } %>
|
||||
<br />
|
||||
<%= call_hook(:view_reports_issue_report_split_content_left, :project => @project) %>
|
||||
</div>
|
||||
|
||||
<div class="splitcontentright">
|
||||
<h3>
|
||||
<%=l(:field_version)%>
|
||||
<%= link_to l(:label_details),
|
||||
project_issues_report_details_path(@project, :detail => 'version'),
|
||||
:class => 'icon-only icon-zoom-in',
|
||||
:title => l(:label_details) %>
|
||||
</h3>
|
||||
<%= render :partial => 'simple', :locals => { :data => @issues_by_version, :field_name => "fixed_version_id", :rows => @versions } %>
|
||||
<br />
|
||||
<% if @project.children.any? %>
|
||||
<h3>
|
||||
<%=l(:field_subproject)%>
|
||||
<%= link_to l(:label_details),
|
||||
project_issues_report_details_path(@project, :detail => 'subproject'),
|
||||
:class => 'icon-only icon-zoom-in',
|
||||
:title => l(:label_details) %>
|
||||
</h3>
|
||||
<%= render :partial => 'simple', :locals => { :data => @issues_by_subproject, :field_name => "project_id", :rows => @subprojects } %>
|
||||
<br />
|
||||
<% end %>
|
||||
<h3>
|
||||
<%=l(:field_category)%>
|
||||
<%= link_to l(:label_details),
|
||||
project_issues_report_details_path(@project, :detail => 'category'),
|
||||
:class => 'icon-only icon-zoom-in',
|
||||
:title => l(:label_details) %>
|
||||
</h3>
|
||||
<%= render :partial => 'simple', :locals => { :data => @issues_by_category, :field_name => "category_id", :rows => @categories } %>
|
||||
<br />
|
||||
<%= call_hook(:view_reports_issue_report_split_content_right, :project => @project) %>
|
||||
</div>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue