Moodle

Adding a summary of questions state(graded or not) in quiz attemps

Details

  • Type: Bug Bug
  • Status: Closed Closed
  • Priority: Minor Minor
  • Resolution: Duplicate
  • Affects Version/s: 1.7
  • Fix Version/s: None
  • Component/s: Quiz
  • Labels:
    None
  • Affected Branches:
    MOODLE_17_STABLE

Description

Following comment of Tim in http://moodle.org/mod/forum/discuss.php?d=54574#251590 about the webct interface related to the status of questions (graded or not).
joseph Rézeau :Agreed, the WebCT interface for quizzes was just what we need.
Joseph
Tim: So would I.
Are you interested in developping this idea following my suggestion (or in another way) in the same discussion?
http://www.chimie.uqam.ca/images/2809/statusexample.jpg.
adding after line 516 of attemp.php
with the simple following code (line 516 )

echo "<table><tr><td>Questions submitted and graded:";
$nn= 0;
foreach ($questions as $i => $question) { $nn++; if ( $states[$i]->grade > 0 || $states[$i]->sumpenalty > 0 ) echo $nn .' <input type="checkbox" name="qgradestate" value="" CHECKED ></td><td>' ; else echo $nn .' <input type="checkbox" name="qgradestate" value="" UNCHECKED ></td><td>' ; }
echo "</td></tr></table>";

Issue Links

Activity

Hide
Pierre Pichet added a comment -

This was first suggested as a new feature in MDL-3643 .
I just selected the wrong option when creating it.

Show
Pierre Pichet added a comment - This was first suggested as a new feature in MDL-3643 . I just selected the wrong option when creating it.

People

Vote (0)
Watch (1)

Dates

  • Created:
    Updated:
    Resolved: