Attempt Overall feedback

Attempt Overall feedback

autor Eslam Adel -
Počet odpovedí: 6

Hello Dears,

We need to mack manual grading for whole attempt not by questions, grading student attempt with one feild.

There's any way to add attachment Quiz's manual grading feedback comment?

-Regards

Priemer hodnotení : -
V odpovedi na Eslam Adel

Re: Attempt Overall feedback

autor Emma Richardson -
Obrázok: Documentation writers Obrázok: Particularly helpful Moodlers Obrázok: Plugin developers
I am not quite sure what you are trying to achieve but if you are wanting to manually assign a grade for the whole quiz with feedback, you can do that directly in the gradebook...
V odpovedi na Emma Richardson

Re: Attempt Overall feedback

autor Eslam Adel -
Thanks Emma, But I didn't found that option on gradebook.
Kindly refer to it by screenshot.
-Regards
V odpovedi na Eslam Adel

Re: Attempt Overall feedback

autor Dominique Bauer -
Obrázok: Documentation writers Obrázok: Particularly helpful Moodlers Obrázok: Plugin developers

MoodleForum_20211206_0157.png


  1. Select "Grades" from the main menu.
  2. Select "View.
  3. Select "Single view".
  4. Select grade item.
  5. Click on Override "All" or check individual students.
  6. Enter grade.
  7. Enter feedback.
V odpovedi na Dominique Bauer

Re: Attempt Overall feedback

autor Paula Facal Marina -

Hello,

I think that what Dominique is asking is if it is possible to upload a feedback file in a quiz, so students can access personalised comments from the teachers 

V odpovedi na Paula Facal Marina

Re: Attempt Overall feedback

autor Dominique Bauer -
Obrázok: Documentation writers Obrázok: Particularly helpful Moodlers Obrázok: Plugin developers

Hello Paula,

You probably mean "Eslam", the OP. I did not ask anything. On the contrary, I showed how to add feedback in the gradebook. Úsmev

I think you can upload a feedback file for an assignment, but not for a quiz.

V odpovedi na Dominique Bauer

Re: Attempt Overall feedback

autor Dominique Bauer -
Obrázok: Documentation writers Obrázok: Particularly helpful Moodlers Obrázok: Plugin developers

Paula,

Students do not need to submit anything in an Assignment activity for you to give feedback. So to give a feedback file for a quiz, you could do this:

  • Add an assignment directly below the quiz.
  • Name this assignment "Feedback for the quiz".
  • Set the assignment settings as follows:
    • Submission types: none
    • Feedback types: "Feedback files", and "Feedback comments" if desired

Add the following script in the HTML of the Assignment description field, which will hide the submission part of the Assignment:

<p>
  A message to all students or instructions if needed.
</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $(".submissionstatustable").hide();
  $(".feedback h3").hide();
});
</script>

In the gradebook, give a weight of zero to this Assignment and hide it.

Students will thus have easy access to the feedback for their quiz, in the form of a file, by simply clicking on the assignment "Feedback for the quiz" just below the quiz.