fixed wrong paths for partials and js files.

pull/1196/head
Nils Kenneweg 12 years ago
parent 34ccbb3b81
commit be00212ad6
  1. 4
      app/views/project_associations/new.html.erb
  2. 4
      app/views/reportings/edit.html.erb
  3. 4
      app/views/reportings/new.html.erb
  4. 16
      app/views/timelines/_form.html.erb
  5. 4
      app/views/timelines/_timeline.html.erb
  6. 2
      app/views/timelines/new.html.erb
  7. 2
      app/views/timelines/show.html.erb

@ -16,8 +16,8 @@ See doc/COPYRIGHT.rdoc for more details.
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" %>
<%= javascript_include_tag "timelines_autocompleter.js" %>
<%= javascript_include_tag "timelines_select_boxes.js" %>
<% end %>

@ -16,8 +16,8 @@ See doc/COPYRIGHT.rdoc for more details.
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" %>
<%= javascript_include_tag "timelines_autocompleter.js" %>
<%= javascript_include_tag "timelines_select_boxes.js" %>
<% end %>
<% html_title l('timelines.reporting_for_project.show',

@ -16,8 +16,8 @@ See doc/COPYRIGHT.rdoc for more details.
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" %>
<%= javascript_include_tag "timelines_autocompleter.js" %>
<%= javascript_include_tag "timelines_select_boxes.js" %>
<% end %>
<h2><%= l('timelines.new_reporting').tap { |t| html_title t } %></h2>

@ -16,23 +16,23 @@ See doc/COPYRIGHT.rdoc for more details.
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" %>
<%= javascript_include_tag "timelines_autocompleter.js" %>
<%= javascript_include_tag "timelines_select_boxes.js" %>
<% end %>
<div class="edit_form">
<%= render :partial => "timelines/timelines/general", :locals => {:timeline => @timeline, :f => f}%>
<%= render :partial => "timelines/general", :locals => {:timeline => @timeline, :f => f}%>
<%= render :partial => "timelines/timelines/comparison", :locals => {:timeline => @timeline}%>
<%= render :partial => "timelines/comparison", :locals => {:timeline => @timeline}%>
<%= render :partial => "timelines/timelines/vertical_planning_elements", :locals => {:timeline => @timeline}%>
<%= render :partial => "timelines/vertical_planning_elements", :locals => {:timeline => @timeline}%>
<%= render :partial => "timelines/timelines/filter/planning_elements", :locals => {:timeline => @timeline} %>
<%= render :partial => "timelines/filter/planning_elements", :locals => {:timeline => @timeline} %>
<%= render :partial => "timelines/timelines/filter/projects", :locals => {:timeline => @timeline} %>
<%= render :partial => "timelines/filter/projects", :locals => {:timeline => @timeline} %>
<%= render :partial => "timelines/timelines/group/grouping", :locals => {:timeline => @timeline} %>
<%= render :partial => "timelines/group/grouping", :locals => {:timeline => @timeline} %>
</div>

@ -18,8 +18,8 @@ See doc/COPYRIGHT.rdoc for more details.
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" %>
<%= javascript_include_tag "timelines_autocompleter.js" %>
<%= javascript_include_tag "timelines_select_boxes.js" %>
<% end %>
<script type="text/javascript">

@ -18,7 +18,7 @@ See doc/COPYRIGHT.rdoc for more details.
:url => project_path(@project),
:html => {:class => "tabular", :method => 'post'}) do |f| %>
<%= render(:partial => "timelines/timelines/form",
<%= render(:partial => "timelines/form",
:locals => {:f => f, :timeline => @timeline}) %>
<%= f.submit l(:button_create) %>

@ -49,4 +49,4 @@ See doc/COPYRIGHT.rdoc for more details.
})();
</script>
<%= render :partial => "timelines/timelines/timeline", :locals => {:timeline => @timeline} %>
<%= render :partial => "timelines/timeline", :locals => {:timeline => @timeline} %>

Loading…
Cancel
Save