123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <%
- # Copyright (C) 2016 - present Instructure, Inc.
- #
- # This file is part of Canvas.
- #
- # Canvas is free software: you can redistribute it and/or modify it under
- # the terms of the GNU Affero General Public License as published by the Free
- # Software Foundation, version 3 of the License.
- #
- # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
- # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
- # details.
- #
- # You should have received a copy of the GNU Affero General Public License along
- # with this program. If not, see <http://www.gnu.org/licenses/>.
- %>
- <%= fields_for :settings, OpenObject.new(settings) do |f| %>
- <div class="ic-notification">
- <div class="ic-notification__icon" role="presentation">
- <i class="icon-info"></i>
- <span class="screenreader-only">
- <%= accessible_message_icon_text("information") %>
- </span>
- </div>
- <div class="ic-notification__content">
- <div class="ic-notification__message">
- <h4 class="ic-notification__title">
- {{#t}}Plagiarism plugins compatibility notice:{{/t}}
- </h4>
- <span class="notification_message">
- Plagiarism plugins are mutually exclusive and do not work with other enabled plagiarism plugins. Please make sure only one plugin is enabled at a time.
- <span>
- </div>
- </div>
- </div>
- <table class="formtable">
- <tr>
- <td colspan="2">
- Get your credentials from <a href="http://www.vericite.com" target="_blank">VeriCite</a>
- </td>
- </tr>
- <tr>
- <td><%= f.blabel :account_id, :en => "VeriCite Consumer Key" %></td>
- <td>
- <%= f.text_field :account_id %>
- </td>
- </tr>
- <tr>
- <td><%= f.blabel :shared_secret, :en => "VeriCite Shared Secret" %></td>
- <td>
- <%= f.text_field :shared_secret %>
- </td>
- </tr>
- <tr>
- <td><%= f.blabel :host, :en => "VeriCite Host" %></td>
- <td>
- <%= f.text_field :host %>
- </td>
- </tr>
- <tr>
- <td><%= f.blabel :comments, :en => "Submission Comments" %></td>
- <td>
- <%= f.text_area :comments, :rows => '4' %>
- <br/>
- <%= mt :default_comments_settings, "*Text entered here will be displayed to students when submitting for an assignment.*" %>
- </td>
- </tr>
- <tr>
- <td><%= f.blabel :pledge, :en => "VeriCite Pledge" %></td>
- <td>
- <%= f.text_area :pledge, :rows => '4' %>
- <br/>
- <%= mt :pledge_description, "*Text entered here will be displayed to students when submitting for an assignment. The student will be required to check the box for the pledge before submitting. If left blank, no pledge is shown or required to submit.*" %>
- </td>
- </tr>
- <tr>
- <td><%= f.blabel :show_preliminary_score, :en => "Show Preliminary Score" %></td>
- <td><%= f.check_box :show_preliminary_score %></td>
- </tr>
- <tr>
- <td><%= mt :default_assignment_settings, "**Default Assignment Settings**" %>:</td>
- <td></td>
- </tr>
- <tr>
- <td><%= f.blabel :type, :en => "Students Can See the Originality Report" %></td>
- <td><%= f.select :release_to_students, {"Immediately"=>'immediate', "After the assignment is graded"=>'after_grading', "After the Due Date"=>'after_due_date', "Never"=>'never'} %>
- </tr>
- <tr>
- <td><%= f.blabel :exclude_quotes, :en => "Exclude Quotes" %></td>
- <td><%= f.check_box :exclude_quotes %></td>
- </tr>
- <tr>
- <td><%= f.blabel :exclude_self_plag, :en => "Exclude Self Plagiarism" %></td>
- <td><%= f.check_box :exclude_self_plag %></td>
- </tr>
- <tr>
- <td><%= f.blabel :store_in_index, :en => "Store in Index" %></td>
- <td><%= f.check_box :store_in_index %></td>
- </tr>
- </table>
- <% end %>
|