2023-08-03 22:03:40 +08:00
|
|
|
<% provide(:head_title, t("my_modules.results.head_title", project: h(@project.name), module: h(@my_module.name)).html_safe) %>
|
|
|
|
<% provide(:sidebar_title, t("sidebar.my_module.sidebar_title")) %>
|
|
|
|
|
|
|
|
<%= content_for :sidebar do %>
|
|
|
|
<%= render partial: "shared/sidebar/#{@my_module.archived_branch? ? 'archived_my_module' : 'my_module'}",
|
|
|
|
locals: {
|
|
|
|
my_modules: @experiment.my_modules,
|
|
|
|
experiment: @experiment,
|
|
|
|
current_my_module: @my_module
|
|
|
|
}
|
|
|
|
%>
|
|
|
|
<% end %>
|
|
|
|
<%= render partial: 'shared/drag_n_drop_overlay' %>
|
|
|
|
<%= render partial: 'assets/wopi/create_wopi_file_modal' %>
|
|
|
|
<% provide(:container_class, 'no-second-nav-container') %>
|
|
|
|
|
|
|
|
<div id="results" data-behaviour="vue">
|
|
|
|
<results url="<%= my_module_results_url(@my_module) %>">
|
|
|
|
</div>
|
|
|
|
|
2023-08-10 22:48:08 +08:00
|
|
|
<%= javascript_include_tag "handsontable.full" %>
|
|
|
|
<%= render partial: "shared/formulas_libraries" %>
|
|
|
|
<%= render 'shared/tiny_mce_packs' %>
|
2023-08-03 22:03:40 +08:00
|
|
|
<%= javascript_include_tag 'vue_results' %>
|
2023-08-10 22:48:08 +08:00
|
|
|
|