Group Project Peer Evaluation
This rating form gives you an opportunity to evaluate your peers on their contribution towards your group. This will account for 20% of the group presentation grade, so please take this seriously and give an honest evaluation of the work that your group members did, based on the scale provided below.
Please do not rate yourself, and give an exact number. For example, if Bob, a group member, always communicated excellent suggestions, promised to do them, but never did them in a timely fashion or never did them at all, thus affecting the final product, you could rate his performance a 2 out of the possible 10.
Group Topic:
Group Member Overall Rating (Maximum of 10 points)
1.
2.
3.
4.
5.
Rating Scale
0 – 2: Did not contribute at all, or barely contributed to the group project
3 – 4: Contributed minimally to the project
5 – 6: Contributed satisfactorily to the group project
7 – 8: Above average contribution to the group project
9 – 10: Provided excellent and creative ideas, always did assigned tasks in a timely fashion
Last Completed Projects
| topic title | academic level | Writer | delivered |
|---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });

