mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
70 lines
2.9 KiB
Text
70 lines
2.9 KiB
Text
<% provide(:head_title, t("my_modules.results.head_title", project: h(@project.name), module: h(@my_module.name)).html_safe) %>
|
|
<%= render partial: "shared/sidebar" %>
|
|
<%= render partial: "shared/secondary_navigation" %>
|
|
<%= render partial: 'shared/drag_n_drop_overlay' %>
|
|
|
|
<div id="results-toolbar">
|
|
<div class="pull-right">
|
|
<button class="btn btn-greyed" id="results-collapse-btn">
|
|
<span class="glyphicon glyphicon-collapse-up"></span>
|
|
<span class="hidden-xs-custom"><%= t'my_modules.results.collapse_label' %></button></span>
|
|
<button class="btn btn-greyed" id="results-expand-btn">
|
|
<span class="glyphicon glyphicon-collapse-down"></span>
|
|
<span class="hidden-xs-custom"><%= t'my_modules.results.expand_label' %></button></span>
|
|
</div>
|
|
|
|
<% if can_manage_module?(@my_module) %>
|
|
<span class="hidden-xs"><%= t'my_modules.results.add_label' %></span>
|
|
<a class="btn btn-primary"
|
|
id="new-result-text"
|
|
data-href="<%= new_my_module_result_text_path(my_module_id: @my_module.id) %>"
|
|
href="#">
|
|
<span class="glyphicon glyphicon-font"></span>
|
|
<span class="hidden-xs"><%= t("my_modules.results.new_text_result") %></span>
|
|
</a>
|
|
<a class="btn btn-primary"
|
|
id="new-result-table"
|
|
data-href="<%= new_my_module_result_table_path(my_module_id: @my_module.id) %>"
|
|
href="#">
|
|
<span class="glyphicon glyphicon-list-alt"></span>
|
|
<span class="hidden-xs"><%= t("my_modules.results.new_table_result") %></span>
|
|
</a>
|
|
<a class="btn btn-primary"
|
|
id="new-result-asset"
|
|
data-href="<%= new_my_module_result_asset_path(my_module_id: @my_module.id) %>"
|
|
href="#">
|
|
<span class="glyphicon glyphicon-picture"></span>
|
|
<span class="hidden-xs"><%= t("my_modules.results.new_asset_result") %></span>
|
|
</a>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div style="height: 15px;"></div>
|
|
|
|
<%= render partial: "shared/image_preview_modal.html.erb" %>
|
|
|
|
<div id="results" data-module-id="<%= @my_module.id %>">
|
|
<% ordered_result_of(@my_module).each do |result| %>
|
|
<%= render partial: "result", locals: { result: result } %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= javascript_include_tag "handsontable.full.min" %>
|
|
<%= javascript_include_tag("canvas-to-blob.min") %>
|
|
<%= javascript_include_tag "my_modules/results" %>
|
|
<%= javascript_include_tag "results/result_texts" %>
|
|
<%= javascript_include_tag "results/result_tables" %>
|
|
<%= javascript_include_tag "results/result_assets" %>
|
|
|
|
<!-- Libraries for formulas -->
|
|
<%= javascript_include_tag "lodash" %>
|
|
<%= javascript_include_tag "numeral" %>
|
|
<%= javascript_include_tag "numeric" %>
|
|
<%= javascript_include_tag "md5" %>
|
|
<%= javascript_include_tag "jstat" %>
|
|
<%= javascript_include_tag "formula" %>
|
|
<%= javascript_include_tag "parser" %>
|
|
<%= javascript_include_tag "ruleJS" %>
|
|
<%= javascript_include_tag "handsontable.formula" %>
|
|
<%= javascript_include_tag "big.min" %>
|
|
<%= stylesheet_link_tag "handsontable.formula" %>
|