Code Monkey home page Code Monkey logo

Comments (2)

mwest1066 avatar mwest1066 commented on September 23, 2024

My old notes on this issue:

We would like to have a simple interface for the students to see which questions they have done in the past, and what happened with each question. This should consist of several parts:

Server-side changes

The server needs to be changed to support pagination as follows.

/submissions should take offset and limit query parameters. The response should then include just entries in the range [offset, offset + limit - 1]. All counts are zero-indexed, so specifying offset = 0 and limit = 10 would give the first 10 entries, while offset = 40 and limit = 10 would give the fifth block of 10 entries.

Activity page

The activity page should be nicely styled as a paged table view using the bootstrap pagination component. The server-side changes listed above will enable each page to be fetched efficiently.

The date-time objects in the activity report are in ISO 8601 format in UTC. These should be displayed in the user's local timezone (see this blog post).

Each submission line on the activity page should specify:

  • date/time
  • question title
  • score for this submission

Each submission line should link to a view of the completed question, showing the users' answer and the grading data, including score and the solution if available.

from prairielearn.

mwest1066 avatar mwest1066 commented on September 23, 2024

This would be helpful for students doing Homework assessments. Exam assessments already show all submissions to a question, but for Homeworks the history information vanishes.

It would be great to add a new page called pages/studentInstanceQuestionHistory that shows a list of all submissions to a particular instance question. This could be linked from a "History" button in the sidebar of Homework questions.

The list of submissions should not show the submissions themselves, but rather should just be a big table listing the time of submission, the score, and a link to the question page with the ?variant_id= query parameter set so that it will show that exact variant.

from prairielearn.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.