mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
21 lines
905 B
Text
21 lines
905 B
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| %>
|
|
<div class="form-group">
|
|
<%= ff.tiny_mce_editor(:text,
|
|
value: @result.result_text.text,
|
|
data: { object_type: 'result_text',
|
|
object_id: @result.result_text.id }) %>
|
|
</div>
|
|
<% 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>
|