Submission.php edit

Submission.php edit

by Marc Dastous -
Number of replies: 4
  1. If I want to add a "Save all my feedback button to the top of my submission.php page, which lines of code would I have to copy? 

I am tired of scrolling all the way down to the bottom of the page when I am correcting only one student's re-submission.

Marc

Average of ratings: -
In reply to Marc Dastous

Re: Submission.php edit

by Martin Dougiamas -
Picture of Core developers Picture of Documentation writers Picture of Moodle HQ Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers
I was in the area so I just added this.
In reply to Martin Dougiamas

Re: Submission.php edit

by Marc Dastous -

Martin;

Is this in the CVS now?  I did not see an update.

Marc

In reply to Marc Dastous

Re: Submission.php edit

by Martin Dougiamas -
Picture of Core developers Picture of Documentation writers Picture of Moodle HQ Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers
Public pages take a while to relfect changes.

Index: submissions.php
===================================================================
RCS file: /cvsroot/moodle/moodle/mod/assignment/submissions.php,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** submissions.php 13 Mar 2004 14:24:33 -0000 1.26
--- submissions.php 26 Apr 2004 13:39:39 -0000 1.27
***************
*** 175,178 ****
--- 175,184 ----
if ($allowedtograde) {
echo '<form action="submissions.php" method="post">';
+ echo "<center>";
+ echo "<input type=hidden name=sort value=\"$sort\">";
+ echo "<input type=hidden name=timenow value=\"$timenow\">";
+ echo "<input type=hidden name=id value=\"$assignment->id\">";
+ echo "<input type=submit value=\"$strsaveallfeedback\">";
+ echo "</center>";
}

In reply to Martin Dougiamas

Re: Submission.php edit

by Marc Dastous -

Thank you Martin, I will keep my eye out for this. 

G'day!big grin

Marc