mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
24 lines
1.3 KiB
Text
24 lines
1.3 KiB
Text
<div class="well">
|
|
<%= bootstrap_form_for(@result, url: my_module_result_texts_path(format: :json, page: params[:page], order: params[:order]),
|
|
data: { 'name-max-length': Constants::NAME_MAX_LENGTH, 'rich-text-max-length': Constants::RICH_TEXT_MAX_LENGTH },
|
|
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,
|
|
autocomplete: 'off',
|
|
data: { object_type: 'result_text',
|
|
object_id: @result.result_text.id,
|
|
highlightjs_path: asset_path('highlightjs-github-theme.css'),
|
|
last_updated: @result.updated_at.to_i * 1000 }) %>
|
|
<% end %><br />
|
|
<div class="align-right">
|
|
<button type="button" class="btn btn-secondary cancel-new">
|
|
<%= t("general.cancel")%>
|
|
</button>
|
|
<%= f.button t("result_texts.new.create"),
|
|
class: 'btn btn-primary save-result',
|
|
onclick: "Results.processResult(event, Results.ResultTypeEnum.TEXT);" %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|