2016-02-12 23:52:43 +08:00
|
|
|
<div class="well">
|
2019-07-26 00:00:24 +08:00
|
|
|
<%= bootstrap_form_for(@result, url: my_module_result_texts_path(format: :json),
|
|
|
|
data: { 'name-max-length': Constants::NAME_MAX_LENGTH, 'rich-text-max-length': Constants::RICH_TEXT_MAX_LENGTH },
|
|
|
|
remote: true) do |f| %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<%= f.text_field :name, style: "margin-top: 10px;" %><br />
|
|
|
|
<%= f.fields_for :result_text do |ff| %>
|
2019-04-26 23:37:01 +08:00
|
|
|
<%= ff.tiny_mce_editor(:text,
|
|
|
|
id: :result_text_attributes_textarea,
|
2019-11-12 21:37:23 +08:00
|
|
|
autocomplete: 'off',
|
2019-04-26 23:37:01 +08:00
|
|
|
data: { object_type: 'result_text',
|
|
|
|
object_id: @result.result_text.id,
|
2019-09-24 17:26:36 +08:00
|
|
|
highlightjs_path: asset_path('highlightjs-github-theme.css'),
|
|
|
|
last_updated: @result.updated_at.to_i * 1000 }) %>
|
2016-11-15 19:55:32 +08:00
|
|
|
<% end %><br />
|
2018-04-25 19:57:12 +08:00
|
|
|
<div class="align-right">
|
2020-01-07 23:13:34 +08:00
|
|
|
<button type="button" class="btn btn-secondary cancel-new">
|
2018-04-25 19:57:12 +08:00
|
|
|
<%= t("general.cancel")%>
|
|
|
|
</button>
|
2020-05-07 03:10:49 +08:00
|
|
|
<%= f.buttongst t("result_texts.new.create"),
|
2020-01-07 23:13:34 +08:00
|
|
|
class: 'btn btn-primary save-result',
|
2019-07-26 00:00:24 +08:00
|
|
|
onclick: "Results.processResult(event, Results.ResultTypeEnum.TEXT);" %>
|
2018-04-25 19:57:12 +08:00
|
|
|
</div>
|
2016-02-12 23:52:43 +08:00
|
|
|
<% end %>
|
|
|
|
</div>
|