360° feedback

Activities ::: mod_threesixo
Maintained by Jun Pataleta
A simple 360° feedback activity plugin for Moodle.
Latest release:
878 sites
346 downloads
75 fans
Current versions available: 3
Activity configuration

  1. Select "360° feedback" from the activity chooser.
  2. Tick "Anonymous" if you would like to anonymise user responses after users have finalised their feedback to their peer.
  3. Choose which type of course participants will be participating in the activity.
  4. Save and display
  5. Click on "Edit 360° feedback items" to add/select questions for the questionnaire. There are 2 main question types: Rated questions and Comments. Rated questions get averaged, while Comments are... well, comments.
  6. After you're done setting up the questionnaire, make the 360° feedback activity available.

Providing peer feedback

  1. On the course page, click on the 360° feedback activity.
  2. Select a user whom you will provide feedback to.
  3. Click on the appropriate action icon for that user. Click on the pencil icon to start providing feedback for that user. Click on the trash icon to decline to provide feedback for that user.
  4. If you're done giving feedback to a user for an anonymous 360° feedback activity, clicking on "Submit" will finalise your feedback for that user and anonymise your responses. Clicking on "Save changes" will preserve your responses, so you'll be able to continue filling out the questionnaire should you need to temporarily navigate away from the questionnaire page.


Viewing reports

If you're a manager/teacher for a course, you can view the feedback given to a specified user. To do so,

  1. On the course page, click on the 360° feedback activity.
  2. Click on the magnifier icon for a user to view the feedback for that user.
  3. Rated questions will be averaged.
  4. Responses to comments will be listed for each comment question. If the feedback is non-anonymous, the name of the participant who made the comment will be shown together with the comment.
Slides

Enjoy!


Please report bugs/suggestions to https://github.com/junpataleta/moodle-mod_threesixo/issues.

Screenshots

Screenshot #0
Screenshot #1
Screenshot #2
Screenshot #3

Contributors

Jun Pataleta (Lead maintainer)
Please login to view contributors details and/or to contact them

Comments RSS

Show comments
  • Jun Pataleta
    Thu, 25 July 2019, 8:34 AM
    Thanks, Carole!
    At the moment only individual assessments are being exported. By "global export", do you mean whether teachers can export the assessment of all the students at once? If so, I think that would be a good idea! I'll add it to the list of improvements to be implemented for the future versions of the plugin!
    Cheers!
  • Carole Bascio
    Thu, 25 July 2019, 3:54 PM
    Hello Jun,
    Thanks for your return.
    Yes I do.
    We are looking forward to this new version, so smile
    The best!
  • Egbertje Mol
    Thu, 4 June 2020, 10:14 PM
    Good day!

    I have a question about this plugin.
    Does the person who wants to provide the feedback always need an account in Moodle?

    Kind regards!
  • Jean Lecoq
    Mon, 28 Sept 2020, 8:13 PM
    Thank you for this great plugin.
    I just want to confirm before I do a rollout, If person A reviews person B, Can person B see what person A said or rated person B?
  • Jun Pataleta
    Tue, 29 Sept 2020, 10:46 AM
    Hi Egbertje - Yes they do need to be a logged in user in the Moodle site.

    Hi Jean - A participant can see what the other participants wrote about them for the comment-type questions if the following settings of the 360-degree feedback are set:
    * "Anonymous" is not ticked
    * "Releasing" setting is set to "Open to participants"
    They will be able to view these responses in the report page. The responses for the rated questions are averaged and the participant will not be able to see the individual ratings that were provided by the other participants.
  • Sohail Farooqi
    Sun, 25 Oct 2020, 10:33 PM
    Very well done! I appreciate your efforts.
    Is it possible to include accumulated results into grade-book?
  • Jun Pataleta
    Tue, 27 Oct 2020, 11:05 PM
    Thanks, Sohail. At the moment, the plugin does not insert grades into the gradebook.

    This question seems to have popped in a few times already. May I ask people interested in this feature for help to provide requirements, use-cases/stories, or any details in order to best implement this and make it useful and fair to the course participants?
  • Vahid Aghamohamadi
    Mon, 21 Dec 2020, 6:55 PM
    Hello thank you for your useful plugin. It is not showing question answers in moodle 3.10 . Could you please upgrade it for 3.10 ?
  • Vahid Aghamohamadi
    Sat, 2 Jan 2021, 8:58 PM
    It seems that the author wont update this module. Is it possible to introduce me ? The Rate questions are not showing true then I changed every .row-fluid style to .row and every .label and .label-type as introduction in upgare.txt . The choices are now shown but not selectable could you please introduce to activate thm thank you .
  • Meir Kirshner
    Wed, 3 Feb 2021, 8:16 PM
    hello, can i change the rated titles ?
  • Joel Orta
    Tue, 16 Feb 2021, 7:57 AM
    Hello everyone:
    I built this query that shows the detail per student and question, maybe it can be used by someone to perform a different analysis than the one presented by the block.

    It is my first time in these forums, and I do not know if it is correct to put this type of information here.

    Thank you all.

    Select prefix_threesixo.name f360_name,
    prefix_course.fullname course_full_name,
    prefix_threesixo_question.question question_desc,
    CASE prefix_threesixo_question.type
    WHEN 0 THEN 'Valuada'
    WHEN 1 THEN 'Comentario'
    ELSE prefix_threesixo_question.type
    END question_type,
    concat(ufrom.firstname, ' ', ufrom.lastname) response_fromuser,
    concat(uto.firstname,' ',uto.lastname) response_touser,
    prefix_threesixo_response.id response_id,
    prefix_threesixo_response.value response_grade
    From prefix_threesixo,
    prefix_course,
    prefix_threesixo_item,
    prefix_threesixo_question,
    prefix_threesixo_submission,
    prefix_threesixo_response,
    prefix_user ufrom,
    prefix_user uto
    Where prefix_threesixo.course = prefix_course.id
    And prefix_threesixo_item.threesixo = prefix_threesixo.id
    And prefix_threesixo_item.question = prefix_threesixo_question.id
    And prefix_threesixo_submission.threesixo = prefix_threesixo.id
    And prefix_threesixo_response.threesixo = prefix_threesixo.id
    And prefix_threesixo_response.item = prefix_threesixo_item.id
    And prefix_threesixo_response.fromuser = prefix_threesixo_submission.fromuser
    And prefix_threesixo_response.touser = prefix_threesixo_submission.touser
    And prefix_threesixo_response.fromuser = ufrom.id
    And prefix_threesixo_response.touser = uto.id
    Order by prefix_threesixo_response.id
  • Sarah Lattimore
    Fri, 11 June 2021, 12:08 PM
    Same issue as someone above - have set up this activity but when you go in to submit feedback, the rating scale is visible but not selectable. Any ideas why and how this can be fixed?
  • Jun Pataleta
    Mon, 14 June 2021, 12:02 PM
    Thanks, Sarah and Vahid. Apologies for the delay. I haven't been able to update the plugin in a while due to tight work commitments. I have just released a new version of the plugin and the Bootstrap issue should now be fixed for 3.10 and up.

    Thanks for your support of this plugin.

    Cheers!
  • E-LEARN PTLMS
    Tue, 29 June 2021, 6:43 PM
    Hi,

    Awesome Plugin.

    it possible to change the scale from 6 to 5. (reduce the score)?

    That is, a 1 to 5 rating scale (report and feedback insert)

    Thank you very much.
    Regards
  • Miguël Dhyne
    Mon, 26 July 2021, 1:51 AM
    Hello,

    Very interesting and useful plugin!

    I have two ideas :
    1) I think it will be interesting to have the possibility to sort users by role (if there are many users it's difficult to know "who is who" and "who does what").
    2) When we export in excel file, allowed one comment by lines in order to be able to better modify and better design the document for printing. I think, as it is said yet, it will be interesting to allow global export (all users in one file).

    Thank you!
    Best regards
1 2 3
Please login to post comments