-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make links in settings-content open in new window
- Loading branch information
1 parent
e823ddb
commit db32211
Showing
9 changed files
with
20 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +0,0 @@ | ||
<% title "Theses" %> | ||
|
||
<table class="table table-striped"> | ||
<tr> | ||
<th>Title</th> | ||
<th>Author</th> | ||
<th>Supervisor</th> | ||
<th>Committee</th> | ||
<th>Student</th> | ||
<th>Subjects</th> | ||
<th>Keywords</th> | ||
<th>Abstract</th> | ||
<th>Comments</th> | ||
<th>Acknowledgements</th> | ||
<th>Embargo</th> | ||
<th>Language</th> | ||
<th>Degree Name</th> | ||
<th>Degree Level</th> | ||
<th>Program</th> | ||
<th>Exam Date</th> | ||
<th>Published Date</th> | ||
<th>Status</th> | ||
</tr> | ||
<% for thesis in @theses %> | ||
<tr> | ||
<td><%= thesis.title %></td> | ||
<td><%= thesis.author %></td> | ||
<td><%= thesis.supervisor %></td> | ||
<td><%= thesis.committee %></td> | ||
<td><%= thesis.student.name %></td> | ||
<td><%= thesis.keywords %></td> | ||
<td><%= thesis.abstract %></td> | ||
<td><%= thesis.embargo %></td> | ||
<td><%= thesis.language %></td> | ||
<td><%= thesis.degree_name %></td> | ||
<td><%= thesis.degree_level %></td> | ||
<td><%= thesis.program %></td> | ||
<td><%= thesis.exam_date %></td> | ||
<td><%= thesis.published_date %></td> | ||
<td><%= thesis.status %></td> | ||
<td><%= link_to "Show", [@student, thesis] %></td> | ||
<td><%= link_to "Edit", edit_student_thesis_path(@student, thesis) %></td> | ||
<td><%= link_to "Destroy", [@student, thesis], :date => { :confirm => 'Are you sure?' }, :method => :delete %></td> | ||
</tr> | ||
<% end %> | ||
</table> | ||
|
||
<p><%= link_to "New Thesis", new_student_thesis_path(@student) %></p> | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -226,6 +226,10 @@ | |
<ul><li><strong>Documents:</strong> Portable Document Format (.pdf), Text (.txt), Hypertext Markup Language (.html, .htm), Open Document Format (.odt, .odp, .ods). </li><li><strong>Images:</strong> Tagged Image File format (.tif)</li><li><strong>Data:</strong> Comma-separated values (.csv) or other delimited text, Extensible Markup Language (.xml)</li><li><strong>Video:</strong> MPEG-4 (.mp4) files are preferred, but we can also accept AVI (.avi) and MOV (.mov) file formats.</li><li><strong>Audio:</strong> MPEG-1 Audio Layer 3 (.mp3) file are preferred, but we can also accept Free Lossless Audio Codec (.flac) or WAVE (.wav) file formats.</li></ul><div>Please ensure that: </div><ul><li>You have permission from subjects appearing in media files. </li><li>The total size of your supplementary files does not exceed 4 gigabytes (4GB)</li><li>If you wish to upload a type of file that you do not see on this list, please email [email protected] for support.</li></ul> | ||
HEREDOC | ||
|
||
AppSettings.student_supplementary_licence_upload_files = <<HEREDOC | ||
<p>Please upload PDF files only.</p> | ||
HEREDOC | ||
|
||
AppSettings.student_supplementary_embargo_upload_files = <<HEREDOC | ||
<p>Please Upload the following documents:</p> | ||
<ul><li><strong>Supervisor Letter</strong></li><li><strong>Other Embargo Supporting Documents</strong></li><li><strong>Portable Document Format:</strong> (.pdf), Text (.txt), Hypertext Markup Language (.html, .htm), Open Document Format (.odt, .odp, .ods).</li></ul> | ||
|