%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2017 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-2017 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. ++#%> <% html_title(l('timelines.associations')) %> <% content_for :action_menu_specific do %> <%= link_to_if_authorized(l("timelines.new_association"), { action: :new }, { title: l("timelines.new_association"), class: ("icon icon-add") }) %> <% 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, class: 'avatar-mini') %> <%= link_to_user(other.responsible) %> <% else %> - <% end %> | <%= format_text 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-delete'}) do %> <%= l('timelines.delete_thing') %> <%= h(other.name) %> <% end %> |