Updates table headers to support localization by providing
the localization key for 'field' and 'value' in the user
details section. Improves consistency in string translations
throughout the report.
Enhances user interface by displaying the user table directly
on the page using html_writer, improving readability.
Specifies the language component in get_string function calls
to enhance string retrieval for user attributes in the table.
Ensures consistent localization for the 'report_usergrades'
component strings.
Introduces a user details table for displaying username, first name,
last name, and email in the report. Updates language strings to
support new user details headings and labels for the table fields.
Increments the plugin version for release tracking.
Displays question name and text in report tables to improve
clarity of user responses alongside their grades.
Improves readability and context by enriching question details.
Updates the iteration over question grades to only include entries with a non-zero fraction to prevent adding incomplete or irrelevant data to the attempt table.
Changes the database query to retrieve multiple records
instead of a single record. This addresses an issue where
only one grade was being fetched even if multiple
assessment steps exist for a question attempt, ensuring
correct display of all attempts and associated grades.
Adjusts the logic to iterate over question grades, ensuring
all entries for a given question attempt are included in
the attempts table instead of only the first one.
This fixes data representation issues in the attempts interface.
Updates the loop to retrieve all question_attempts per usage.
Ensures each attempt's question and response are processed.
Corrects grading by iterating over multiple attempts in a usage.
Improves data accuracy in attempt_table generation.
Corrects variable reference to ensure proper retrieval of question
usages for quiz attempts. Enhances grade display by adding total
possible quiz grade for clarity.
No related issues mentioned.
Updates the question handling mechanism to use question usages
and attempts, replacing the previous reliance on question states
and attempt steps. This change enhances the accuracy of response
and grading information by aligning with the current database
structure.
Improves performance and maintainability by streamlining data
retrieval from the database.
Corrects the field name used for fetching quiz questions from
'quiz' to 'quizid' to align with the database schema. This fixes
query failures when retrieving quiz questions ensuring proper
data retrieval operations.
This minor change resolves an issue with quiz data handling.
Updates database query to use 'quiz_slots' instead of
'quiz_question_instances' to fetch quiz questions. This
change ensures compatibility with updated database schema
and correct data retrieval process.
Extracts and refactors user selection logic by moving user selector
and form functionality into separate class files. This enhances code
modularity and reusability across different parts of the application.
Adds a detailed user grades report page that displays quiz attempts
and grades for selected users, improving user grade reporting.
Updates admin settings to include detailed report page link for
navigation ease.