<%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2015 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. ++#%> <% html_title "#{l('timelines.project_menu.timelines')}: #{h @timeline.name}" %> <%= toolbar title: @timeline.name do %> <% if timeline_action_authorized?(:new) %>
  • <%= new_timeline_link @project do %> <%= l('timelines.timeline') %> <% end %>
  • <% end %> <% if timeline_action_authorized?(:edit) %>
  • <%= edit_timeline_link @project, @timeline do %> <%= l(:button_edit) %> <%= h(@timeline.name) %> <% end %>
  • <% end %> <% if timeline_action_authorized?(:destroy) %>
  • <%= destroy_timeline_link @project, @timeline do %> <%= l(:button_delete) %> <%= h(@timeline.name) %> <% end %>
  • <% end %>
  • <%= link_to url_for(controller: '/reportings', action: 'index', project_id: @project.id), class: 'button' do %> <%= l('timelines.project_menu.reportings') %> <% end %>
  • <% end %>
    <%= form_tag '', {id: "specialForm", 'ng-controller' => 'TimelineSelectionController'} do %>
    <%= label_tag 'timeline_select', l("timelines.timeline"), class: "form--label -transparent" %>
    <% end %> <% push_visible_timelines @visible_timelines %> <% push_current_timeline_id @timeline.id %> <%= render partial: "timeline", locals: {timeline: @timeline} %>