mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
14 lines
616 B
Text
14 lines
616 B
Text
<div class="well">
|
|
<%= bootstrap_form_for(@result, url: my_module_result_texts_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) %>
|
|
</div>
|
|
<% end %><br />
|
|
<%= f.submit t("result_texts.new.create"), class: 'btn btn-primary save-result', onclick: "processResult(event, ResultTypeEnum.TEXT, false);" %>
|
|
<button type="button" class="btn btn-default cancel-new">
|
|
<%= t("general.cancel")%>
|
|
</button>
|
|
<% end %>
|
|
</div>
|