OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/views/timelines/show.html.erb

92 lines
3.5 KiB

<%#-- 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) %>
<li class="toolbar-item">
<%= new_timeline_link @project do %>
<i class="button--icon icon-add"></i>
<span class="button--text"><%= l('timelines.new_timeline') %></span>
<span class='hidden-for-sighted'><%= h(@timeline.name) %></span>
<% end %>
</li>
<% end %>
<% if timeline_action_authorized?(:edit) %>
<li class="toolbar-item">
<%= edit_timeline_link @project, @timeline do %>
<i class="button--icon icon-edit"></i>
<span class="button--text"><%= l(:button_edit) %></span>
<span class='hidden-for-sighted'><%= h(@timeline.name) %></span>
<% end %>
</li>
<% end %>
<% if timeline_action_authorized?(:destroy) %>
<li class="toolbar-item">
<%= destroy_timeline_link @project, @timeline do %>
<i class="button--icon icon-delete"></i>
<span class="button--text"><%= l(:button_delete) %></span>
<span class='hidden-for-sighted'><%= h(@timeline.name) %></span>
<% end %>
</li>
<% end %>
<li class="toolbar-item">
<%= link_to url_for(controller: '/reportings', action: 'index', project_id: @project.id), class: 'button' do %>
<i class="button--icon icon-status-reporting"></i>
<span class="button--text"><%= l('timelines.project_menu.reportings') %></span>
<% end %>
</li>
<% end %>
<div id="timeline">
<%= form_tag '', {id: "specialForm", 'ng-controller' => 'TimelineSelectionController'} do %>
<div class="form--field">
<%= label_tag 'timeline_select', l("timelines.timeline"), class: "form--label -transparent" %>
<div class="form--field-container">
<div class="form--select-container">
<select
ng-model="vm.currentTimeline"
ng-change="vm.switchTimeline()"
id="timeline_select"
class="form--select"
ng-options="timeline.name for timeline in vm.timelines | filter: { name: $select.search } track by timeline.id">
</select>
</div>
</div>
</div>
<% end %>
<% push_visible_timelines @visible_timelines %>
<% push_current_timeline_id @timeline.id %>
<%= render partial: "timeline", locals: {timeline: @timeline} %>
</div>