<%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2013 the OpenProject Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. See doc/COPYRIGHT.rdoc for more details. ++#%> <%= header_tags %> <%= render :partial => 'work_packages/action_menu', :locals => { work_package: controller.work_package } %> <% work_package_breadcrumb %> <%= content_tag('h2', controller.work_package.to_s) %>
<%= avatar(controller.work_package.author, :size => "40") %>

<%= authoring controller.work_package.created_at, controller.work_package.author %>. <% if controller.work_package.created_at != controller.work_package.updated_at %> <%= l(:label_updated_time, time_tag(controller.work_package.updated_at)).html_safe %>. <% end %>


<% controller.work_package_attributes.each_slice(2) do |attributes| %> <% attributes.each do |attribute| %> <% if attribute.is_a? ::WorkPackagesController::WorkPackageAttribute %> <% elsif attribute.is_a? ::WorkPackagesController::WorkPackageUserAttribute %> <% elsif attribute.is_a? ::WorkPackagesController::WorkPackageProgressAttribute %> <% elsif attribute.is_a? ::WorkPackagesController::WorkPackagePlanningElementTypeAttribute %> <% end %> <% end %> <% end %> <%= render_custom_fields_rows(controller.work_package) %> <%= call_hook(:view_issues_show_details_bottom, :issue => controller.work_package) %>
<%= Issue.human_attribute_name(attribute.attribute)%>:<%= h(attribute.value) %> <%= avatar(attribute.value, :size => "14") %> <%= attribute.value ? link_to_user(attribute.value) : "-" %> <%= progress_bar attribute.value, :width => '80px', :legend => "#{attribute.value}%" %> <%= icon_for_planning_element_type(attribute.value) %> <%= h attribute.value.try(:name) %>
<% if controller.work_package.description? %>

<%= link_to_if_authorized(l(:button_quote), { :controller => '/issues', :action => 'quoted', :id => controller.work_package }, :class => 'quote-link icon icon-comment') %>

<%= Issue.human_attribute_name(:description)%>

<%= textilizable controller.work_package, :description, :attachments => controller.work_package.attachments %>

<% end %> <% if controller.work_package.attachments.any? -%> <%= link_to_attachments controller.work_package %> <% end -%> <%= call_hook(:view_issues_show_description_bottom, :issue => controller.work_package) %>
<%= render :partial => 'subwork_packages_paragraph', :locals => { :work_package => controller.work_package, :ancestors => controller.ancestors, :descendants => controller.descendants } %> <% if authorize_for('work_package_relations', 'create') || controller.relations.present? %>

<%= render :partial => 'relations', :locals => { :work_package => controller.work_package, :relations => controller.relations } %>
<% end %> <% if User.current.allowed_to?(:add_work_package_watchers, controller.project) || (controller.work_package.watchers.present? && User.current.allowed_to?(:view_work_package_watchers, controller.project)) %>

<%= render :partial => 'watchers/watchers', :locals => {:watched => controller.work_package} %>
<% end %>
<% if controller.changesets.present? %>

<%=l(:label_associated_revisions)%>

<%= render :partial => 'changesets', :locals => { :changesets => controller.changesets} %>
<% end %> <% if controller.journals.present? %>

<%=l(:label_history)%>

<%= render :partial => 'history', :locals => { :issue => controller.work_package, :journals => controller.journals } %>
<% end %>
<%= render :partial => 'layouts/action_menu' %>
<% if authorize_for('issues', 'edit') %>
<% end %> <%= other_formats_links do |f| %> <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %> <%= f.link_to 'PDF' %> <% end %> <% html_title h(controller.work_package.to_s) %> <% content_for :sidebar do %> <%= render :partial => 'issues/sidebar' %> <% end %> <% content_for :header_tags do %> <%= auto_discovery_link_tag(:atom, {:format => 'atom', :key => User.current.rss_key}, :title => "#{controller.work_package.project} - #{controller.work_package.tracker} ##{controller.work_package.id}: #{controller.work_package.subject}") %> <%= stylesheet_link_tag 'context_menu_rtl' if l(:direction) == 'rtl' %> <% end %> <%= javascript_tag "new ContextMenu('#{issues_context_menu_path}')" %> <% #include calendar js files in case they are needed for edit include_calendar_headers_tags -%>