scinote-web/app/views/result_texts/_new.html.erb
2019-04-26 17:37:01 +02:00

21 lines
978 B
Plaintext

<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| %>
<%= ff.tiny_mce_editor(:text,
id: :result_text_attributes_textarea,
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-new">
<%= t("general.cancel")%>
</button>
<%= f.submit t("result_texts.new.create"),
class: 'btn btn-success save-result',
onclick: "Results.processResult(event, Results.ResultTypeEnum.TEXT, false);" %>
</div>
<% end %>
</div>