diff --git a/app/views/theses/_form_student_editable.html.erb b/app/views/theses/_form_student_editable.html.erb index d53cfd2..9908b65 100644 --- a/app/views/theses/_form_student_editable.html.erb +++ b/app/views/theses/_form_student_editable.html.erb @@ -1,11 +1,12 @@ <%= f.input :language, collection: Thesis::LANGUAGE, readonly: read_only_if_student("language"), input_html: { aria_label: "Language" } %> <%= f.label :abstract, label: "Abstract", required: true, class: "d-block mb-1" %> +
<%= raw(AppSettings.student_update_details_abstract) %>
<%= f.input :abstract, input_html: { class: "", rows: "8" }, label: false, readonly: read_only_if_student("abstract") %> <%= f.label :loc_subject_ids, label: "Subjects", class: "d-block mb-1" %> -
<%= raw(AppSettings.student_update_details_subjects) %>
+
<%= raw(AppSettings.student_update_details_subjects) %>
<% @thesis.loc_subjects.each_with_index do |subject, index| %> @@ -22,5 +23,5 @@
<%= f.label :keywords, label: "Keywords", class: "d-block mb-1" %> -
<%= raw(AppSettings.student_update_details_keywords) %>
+
<%= raw(AppSettings.student_update_details_keywords) %>
<%= f.input :keywords, label: false, input_html: { rows: "2", aria:{ label: "Keywords" } }, readonly: read_only_if_student("keywords") %>