%#-- 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: work_package } %>
<% work_package_breadcrumb %>
<%= content_tag('h2', work_package.to_s) %>
<%= avatar(work_package.author, :size => "40") %>
<%= authoring work_package.created_at, work_package.author %>.
<% if work_package.created_at != work_package.updated_at %>
<%= l(:label_updated_time, time_tag(work_package.updated_at)).html_safe %>.
<% end %>
<% if work_package.description? %>
<%= link_to_if_authorized(l(:button_quote), { :controller => '/issues', :action => 'quoted', :id => work_package }, :class => 'quote-link icon icon-comment') %>
<%= Issue.human_attribute_name(:description)%>
<%= textilizable work_package, :description, :attachments => work_package.attachments %>
<% end %>
<% if work_package.attachments.any? -%>
<%= link_to_attachments work_package %>
<% end -%>
<%= call_hook(:view_issues_show_description_bottom, :issue => work_package) %>
<%= render :partial => 'subwork_packages_paragraph', :locals => { :work_package => work_package,
:ancestors => ancestors,
:descendants => descendants } %>
<% if authorize_for('work_package_relations', 'create') || relations.present? %>
<%= render :partial => 'relations', :locals => { :work_package => work_package,
:relations => relations } %>
<% end %>
<% if User.current.allowed_to?(:add_work_package_watchers, project) ||
(work_package.watchers.present? && User.current.allowed_to?(:view_work_package_watchers, project)) %>
<%= render :partial => 'watchers/watchers', :locals => {:watched => work_package} %>
<% end %>