mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-05 23:17:33 +08:00
a3bbf94643
This fixes the mentioned issues @mlorb mentioned. Closes SCI-637.
5 lines
No EOL
569 B
Text
5 lines
No EOL
569 B
Text
<%= bootstrap_form_for [@project, @report], remote: true, url: @url, method: @method, html: { id: "save-report-form" } do |f| %>
|
|
<%= f.text_field :name, label: t("projects.reports.elements.modals.save_report.name"), placeholder: t("projects.reports.elements.modals.save_report.name_placeholder") %>
|
|
<%= f.smart_text_area :description, label: t("projects.reports.elements.modals.save_report.description"), placeholder: t("projects.reports.elements.modals.save_report.description_placeholder") %>
|
|
<%= hidden_field_tag :report_contents, @report_contents %>
|
|
<% end %> |