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/_form.html.erb

30 lines
1.2 KiB

<%= error_messages_for 'timeline' %>
<% unless User.current.impaired? %>
<%# TODO: Require autocompleter inside select_boxes.js
For lack of a requiring policy (such as requirejs), just include the
autocompleter on its own.
%>
<%= javascript_include_tag "autocompleter.js", :plugin => "chiliproject_timelines" %>
<%= javascript_include_tag "select_boxes.js", :plugin => "chiliproject_timelines" %>
<% end %>
<div class="edit_form">
<%= render :partial => "timelines/timelines/general", :locals => {:timeline => @timeline, :f => f}%>
<%= render :partial => "timelines/timelines/comparison", :locals => {:timeline => @timeline}%>
<%= render :partial => "timelines/timelines/vertical_planning_elements", :locals => {:timeline => @timeline}%>
<%= render :partial => "timelines/timelines/filter/planning_elements", :locals => {:timeline => @timeline} %>
<%= render :partial => "timelines/timelines/filter/projects", :locals => {:timeline => @timeline} %>
<%= render :partial => "timelines/timelines/group/grouping", :locals => {:timeline => @timeline} %>
</div>
<% content_for :header_tags do %>
<%= stylesheet_link_tag 'timelines.css', :plugin => 'chiliproject_timelines', :media => "all" %>
<% end %>