<%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2013 the OpenProject Foundation (OPF) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: Copyright (C) 2006-2013 Jean-Philippe Lang Copyright (C) 2010-2013 the ChiliProject Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. See doc/COPYRIGHT.rdoc for more details. ++#%> <%= header_tags %> <% html_title(l('timelines.associations')) %>
<%= link_to_if_authorized(l("timelines.new_association"), { :action => :new }, { :title => l("timelines.new_association"), :class => ("icon icon-add") }) %>

<%= l('timelines.associations') %>

<% @project_types.each do |project_type| %> <% project_assocs = @project_associations_by_type[project_type] %> <% next if project_assocs.blank? %>

<% if project_type.present? %> <%= h(project_type.name) %> <% else %> <%= l('timelines.without_project_type') %> <% end %>

<% reset_cycle('rows') %> <% project_assocs.each do |association| %> <% other = association.project(@project) %> <% end %>
<%= Project.human_attribute_name(:identifier) %> <%= Project.human_attribute_name(:name) %> <%= Project.human_attribute_name(:responsible) %> <%= ProjectAssociation.human_attribute_name(:description) %>  
<%= link_to(h(other.identifier), project_path(other, :jump => 'project_associations')) %> <%= link_to(h(other.name), project_path(other, :jump => 'project_associations')) %> <% if other.responsible.present? %> <%= avatar(other.responsible, :size => "14") %> <%= link_to_user(other.responsible) %> <% else %> - <% end %> <%= textilizable association, :description %> <%= link_to_if_authorized({:controller => '/project_associations', :action => 'edit', :project_id => @project, :id => association}, {:class => 'icon icon-edit'}) do %> <%= l('timelines.edit_thing') %> <%= h(other.name) %> <% end %> <%= link_to_if_authorized({:controller => '/project_associations', :action => 'confirm_destroy', :project_id => @project, :id => association}, {:class => 'icon icon-del'}) do %> <%= l('timelines.delete_thing') %> <%= h(other.name) %> <% end %>
<% end %>