mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
21 lines
1 KiB
Text
21 lines
1 KiB
Text
<div class="well">
|
|
<%= bootstrap_form_for(@result, url: result_text_path(format: :json), remote: :true) do |f| %>
|
|
<%= f.text_field :name, style: "margin-top: 10px;" %><br />
|
|
<%= f.fields_for :result_text do |ff| %>
|
|
<%= ff.tiny_mce_editor(:text,
|
|
id: :result_text_attributes_textarea,
|
|
value: @result.result_text.tinymce_render(:text),
|
|
data: { object_type: 'result_text',
|
|
object_id: @result.result_text.id,
|
|
highlightjs_path: asset_path('highlightjs-github-theme.css') }) %>
|
|
<% end %><br />
|
|
<div class="align-right">
|
|
<button type="button" class="btn btn-default cancel-edit">
|
|
<%= t("general.cancel")%>
|
|
</button>
|
|
<%= f.submit t("general.save"),
|
|
class: 'btn btn-success save-result',
|
|
onclick: "Results.processResult(event, Results.ResultTypeEnum.TEXT, true);" %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|