diff --git a/app/models/app_settings.rb b/app/models/app_settings.rb
index 4425a22..ea1f739 100644
--- a/app/models/app_settings.rb
+++ b/app/models/app_settings.rb
@@ -33,6 +33,7 @@ class AppSettings < RailsSettings::Base
field :student_upload_files
field :student_primary_upload_files
field :student_supplementary_upload_files
+ field :student_supplementary_licence_upload_files
field :student_supplementary_embargo_upload_files
field :student_review_license_info
field :student_review_license_lac
diff --git a/app/views/documents/_form.html.erb b/app/views/documents/_form.html.erb
index 55740f7..88afcf2 100644
--- a/app/views/documents/_form.html.erb
+++ b/app/views/documents/_form.html.erb
@@ -24,7 +24,7 @@ html: { multipart: true, class: "file-upload" } do |f| %>
<%= raw(AppSettings.student_supplementary_upload_files) %>
<% end %>
<% if @document.usage == 'licence' %>
- <%= raw(AppSettings.student_supplementary_embargo_upload_files) %>
+ <%= raw(AppSettings.student_supplementary_licence_upload_files) %>
<% end %>
<% if @document.usage == 'embargo' %>
<%= raw(AppSettings.student_supplementary_embargo_upload_files) %>
diff --git a/app/views/settings/_student_submission.html.erb b/app/views/settings/_student_submission.html.erb
index f4f9084..d348875 100644
--- a/app/views/settings/_student_submission.html.erb
+++ b/app/views/settings/_student_submission.html.erb
@@ -20,9 +20,10 @@
<%= f.input :student_update_details_keywords, as: :rich_text_area, label: "Keywords", input_html: { rows: 5 } %>
- <%= f.input :student_upload_files, as: :rich_text_area, label: "Upload files message", input_html: { rows: 20 } %>
- <%= f.input :student_supplementary_upload_files, as: :rich_text_area, label: "Supplementary Upload files message", input_html: { rows: 30 } %>
- <%= f.input :student_supplementary_embargo_upload_files, as: :rich_text_area, label: "Supplementary Embargo Upload files message", input_html: { rows: 30 } %>
+ <%= f.input :student_upload_files, as: :rich_text_area, label: "Upload Primary Thesis File message", input_html: { rows: 20 } %>
+ <%= f.input :student_supplementary_upload_files, as: :rich_text_area, label: "Upload Supplementary Thesis Files message", input_html: { rows: 30 } %>
+ <%= f.input :student_supplementary_licence_upload_files, as: :rich_text_area, label: "Upload Licence Files message", input_html: { rows: 30 } %>
+ <%= f.input :student_supplementary_embargo_upload_files, as: :rich_text_area, label: "Upload Embargo Files message", input_html: { rows: 30 } %>
<%= f.input :primary_thesis_file_extensions, as: :text, label: "Primary Thesis File Extensions", input_html: { rows: 3 } %>
<%= f.input :supplemental_thesis_file_extensions, as: :text, label: "Supplementary Thesis File Extensions", input_html: { rows: 3 } %>
<%= f.input :licence_file_extensions, as: :text, label: "Licence File Extensions", input_html: { rows: 3 } %>
diff --git a/db/seeds.rb b/db/seeds.rb
index 111073a..691b635 100644
--- a/db/seeds.rb
+++ b/db/seeds.rb
@@ -226,6 +226,10 @@
- Documents: Portable Document Format (.pdf), Text (.txt), Hypertext Markup Language (.html, .htm), Open Document Format (.odt, .odp, .ods).
- Images: Tagged Image File format (.tif)
- Data: Comma-separated values (.csv) or other delimited text, Extensible Markup Language (.xml)
- Video: MPEG-4 (.mp4) files are preferred, but we can also accept AVI (.avi) and MOV (.mov) file formats.
- Audio: MPEG-1 Audio Layer 3 (.mp3) file are preferred, but we can also accept Free Lossless Audio Codec (.flac) or WAVE (.wav) file formats.
Please ensure that:
- You have permission from subjects appearing in media files.
- The total size of your supplementary files does not exceed 4 gigabytes (4GB)
- If you wish to upload a type of file that you do not see on this list, please email diginit@yorku.ca for support.
HEREDOC
+AppSettings.student_supplementary_licence_upload_files = <
Please upload PDF files only.
+HEREDOC
+
AppSettings.student_supplementary_embargo_upload_files = <Please Upload the following documents:
- Supervisor Letter
- Other Embargo Supporting Documents
- Portable Document Format: (.pdf), Text (.txt), Hypertext Markup Language (.html, .htm), Open Document Format (.odt, .odp, .ods).