%#-- 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.
++#%>
<% show_deleted ||= false %>
<%= link_to_planning_element(planning_element, :include_name => false) %>
|
<%= icon_for_planning_element_type(planning_element.planning_element_type) %>
<%=h planning_element.planning_element_type.try(:name) %>
|
<%= link_to_planning_element(planning_element, :include_id => false) %>
|
<% if planning_element.responsible.present? %>
<%= avatar(planning_element.responsible, :size => "14") %>
<%= link_to_user(planning_element.responsible) %>
<% else %>
-
<% end %>
|
<%=h planning_element.start_date %> |
<%=h planning_element.end_date %> |
<%= time_tag(planning_element.updated_at) %> |
<% if show_deleted %>
<% if planning_element.parent.nil? || !(planning_element.parent.deleted?) %>
<%= form_for planning_element, :url => restore_project_planning_element_path(planning_element.project, planning_element), :html => {:method => 'post'} do |f| %>
<%= submit_tag l("timelines.button_restore"), :class => 'icon icon-cancel input-as-link' %>
<% end %>
<% end %>
<%= link_to_if_authorized(l(:button_delete),
{:controller => '/planning_elements',
:action => 'confirm_destroy',
:project_id => planning_element.project,
:id => planning_element},
:class => 'icon icon-del') %>
|
<% end %>