2021-12-01 18:16:45 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title><%= t("protocols.print.title") %></title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
2023-08-10 23:19:28 +08:00
|
|
|
<%= javascript_include_tag 'jquery_bundle' %>
|
2021-12-03 20:44:18 +08:00
|
|
|
<%= javascript_include_tag 'application' %>
|
|
|
|
<%= javascript_include_tag "handsontable.full" %>
|
|
|
|
<%= render 'shared/formulas_libraries' %>
|
2023-07-06 19:19:28 +08:00
|
|
|
<%= stylesheet_link_tag 'print_protocol', media: 'print, screen' %>
|
2021-12-01 18:16:45 +08:00
|
|
|
<body>
|
|
|
|
<%= yield %>
|
2023-04-19 17:45:32 +08:00
|
|
|
<div id="handson"
|
|
|
|
data-init-rows-cnt="<%= Constants::HANDSONTABLE_INIT_ROWS_CNT %>"
|
|
|
|
data-init-cols-cnt="<%= Constants::HANDSONTABLE_INIT_COLS_CNT %>"
|
|
|
|
></div>
|
2023-06-16 16:19:54 +08:00
|
|
|
<%= javascript_include_tag 'protocols/handson' %>
|
2021-12-01 18:16:45 +08:00
|
|
|
</body>
|
|
|
|
</html>
|