scinote-web/app/views/result_texts/_edit.html.erb

18 lines
814 B
Plaintext
Raw Normal View History

2016-02-12 23:52:43 +08:00
<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| %>
2016-11-15 19:55:32 +08:00
<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 }) %>
2016-11-15 19:55:32 +08:00
</div>
<% end %><br />
<%= f.submit t("result_texts.edit.update"), class: 'btn btn-primary save-result', onclick: "processResult(event, ResultTypeEnum.TEXT, true);" %>
2016-02-12 23:52:43 +08:00
<button type="button" class="btn btn-default cancel-edit">
<%= t("general.cancel")%>
</button>
<% end %>
</div>