Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a gradebook button in the grading tab #450

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,22 @@ <h3>Students</h3>
<p style="visibility: hidden">This paragraph takes up some space to deal with a funky display issue of the right side lumping over onto the left</p>


<div id="autogradingform" style="text-align: center; visibility: hidden;">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is unhidden by the javascript at the appropriate time.

<div id="autogradingform" style="text-align: center; visibility: visible;">
<form>
<fieldset>
<input id="enforceDeadline" type="checkbox" name="enforceDeadline" value="enforceDeadline" class="big-checkbox" checked />
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment as above.

<input id="enforceDeadline" type="checkbox" name="enforceDeadline" value="enforceDeadline" class="big-checkbox" checked="">
<label for="enforceDeadline">Only check work submitted before</label>
<span id="dl_disp"></span>
<span id="dl_disp">Wed Jan 31 2024 09:20:00 GMT-0500 (Eastern Standard Time)</span>
</fieldset>
<input id="autogradesubmit" type="submit" class="btn btn-primary" value="Autograde and Display Totals" />
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deleting this invalidates the html.

<input id="autogradesubmit" type="submit" class="btn btn-primary" value="Autograde and Display Totals">
<!--<button id="autogradebutton" class="list-group-item" onclick="function(event){event.preventDefault(); autoGrade(event);}">Autograde</button>-->
</form>
<strong>Warning</strong> Autograde does not support multiple selections yet.
<p> <strong>Warning</strong> Autograde does not support multiple selections yet.</p>
<a id="gradebookLink" class="btn btn-primary" href="/runestone/dashboard/grades">
<p style="text-align: center" class="list-group-item-heading">Grade Book</p>

</a>
<button id="releasebutton" style="text-align: center; visibility: visible;" class="btn btn-primary btn-sm" onclick="toggle_release_grades();">Hide Grades</button>
</div>

<div>
Expand Down