mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 08:54:23 -05:00
110 lines
4.2 KiB
Plaintext
110 lines
4.2 KiB
Plaintext
<h2><%= issue_heading(@issue) %></h2>
|
|
|
|
<div class="<%= @issue.css_classes %> details">
|
|
|
|
<%= avatar(@issue.author, :size => "50") %>
|
|
|
|
<div class="subject">
|
|
<%= render_issue_subject_with_tree(@issue) %>
|
|
<%=t(:label_customer_link_expires)%> <%= distance_of_time_in_words(Time.now, @token.expires_at) %>
|
|
</div>
|
|
<p class="author">
|
|
<%= authoring @issue.created_on, @issue.author %>.
|
|
<% if @issue.created_on != @issue.updated_on %>
|
|
<%= l(:label_updated_time, time_tag(@issue.updated_on)).html_safe %>.
|
|
<% end %>
|
|
</p>
|
|
|
|
<div class="attributes">
|
|
<%= issue_fields_rows do |rows|
|
|
rows.left l(:field_status), @issue.status.name, :class => 'status'
|
|
rows.left l(:field_priority), @issue.priority.name, :class => 'priority'
|
|
unless @issue.disabled_core_fields.include?('assigned_to_id')
|
|
rows.left l(:field_assigned_to), avatar(@issue.assigned_to, :size => "14").to_s.html_safe + (@issue.assigned_to ? @issue.assigned_to : "-"), :class => 'assigned-to'
|
|
end
|
|
unless @issue.disabled_core_fields.include?('category_id') || (@issue.category.nil? && @issue.project.issue_categories.none?)
|
|
rows.left l(:field_category), (@issue.category ? @issue.category.name : "-"), :class => 'category'
|
|
end
|
|
unless @issue.disabled_core_fields.include?('fixed_version_id') || (@issue.fixed_version.nil? && @issue.assignable_versions.none?)
|
|
rows.left l(:field_fixed_version), (@issue.fixed_version ? @issue.fixed_version : "-"), :class => 'fixed-version'
|
|
end
|
|
unless @issue.disabled_core_fields.include?('start_date')
|
|
rows.right l(:field_start_date), format_date(@issue.start_date), :class => 'start-date'
|
|
end
|
|
unless @issue.disabled_core_fields.include?('due_date')
|
|
rows.right l(:field_due_date), format_date(@issue.due_date), :class => 'due-date'
|
|
end
|
|
unless @issue.disabled_core_fields.include?('done_ratio')
|
|
rows.right l(:field_done_ratio), progress_bar(@issue.done_ratio, :legend => "#{@issue.done_ratio}%"), :class => 'progress'
|
|
end
|
|
unless @issue.disabled_core_fields.include?('estimated_hours')
|
|
if @issue.estimated_hours.present? || @issue.total_estimated_hours.to_f > 0
|
|
rows.right l(:field_estimated_hours), issue_estimated_hours_details(@issue), :class => 'estimated-hours'
|
|
end
|
|
end
|
|
#if User.current.allowed_to_view_all_time_entries?(@project)
|
|
if @issue.total_spent_hours > 0
|
|
rows.right l(:label_spent_time), issue_spent_hours_details(@issue), :class => 'spent-time'
|
|
end
|
|
#end
|
|
end %>
|
|
<%= render_full_width_custom_fields_rows(@issue) %>
|
|
<%= call_hook(:view_issues_show_details_bottom, :issue => @issue) %>
|
|
</div>
|
|
|
|
<% if @issue.description? || @issue.attachments.any? -%>
|
|
<hr />
|
|
<% if @issue.description? %>
|
|
<div class="description">
|
|
<div class="contextual">
|
|
<%= link_to l(:button_quote), quoted_issue_path(@issue), :remote => true, :method => 'post', :class => 'icon icon-comment' if @issue.notes_addable? %>
|
|
</div>
|
|
|
|
<p><strong><%=l(:field_description)%></strong></p>
|
|
<div class="wiki">
|
|
<%= textilizable @issue, :description, :attachments => @issue.attachments %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<%= link_to_attachments @issue, :thumbnails => true %>
|
|
<% end -%>
|
|
|
|
<%= call_hook(:view_issues_show_description_bottom, :issue => @issue) %>
|
|
|
|
<% if !@issue.leaf? || User.current.allowed_to?(:manage_subtasks, @project) %>
|
|
<hr />
|
|
<div id="issue_tree">
|
|
<div class="contextual">
|
|
<%= link_to_new_subtask(@issue) if User.current.allowed_to?(:manage_subtasks, @project) %>
|
|
</div>
|
|
<p><strong><%=l(:label_subtask_plural)%></strong></p>
|
|
<%= render_descendants_tree(@issue) unless @issue.leaf? %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% if @relations.present? || User.current.allowed_to?(:manage_issue_relations, @project) %>
|
|
<hr />
|
|
<div id="relations">
|
|
<%= render :partial => 'issues/relations' %>
|
|
</div>
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% if @changesets.present? %>
|
|
<div id="issue-changesets">
|
|
<h3><%=l(:label_associated_revisions)%></h3>
|
|
<%= render :partial => 'issues/changesets', :locals => { :changesets => @changesets} %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% if @journals.present? %>
|
|
<div id="history">
|
|
<h3><%=l(:label_history)%></h3>
|
|
<%= render :partial => 'issues/history', :locals => { :issue => @issue, :journals => @journals } %>
|
|
</div>
|
|
<% end %>
|
|
|
|
|
|
<% html_title "#{@issue.tracker.name} ##{@issue.id}: #{@issue.subject}" %>
|