Commit graph

14 commits

Author SHA1 Message Date
b7014cccd4
fix: Adds localization to user details table headings
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.
2024-11-21 20:59:55 +01:00
6229cb02f7
fix: Update string function calls for language support
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.
2024-11-21 20:59:02 +01:00
1af48be553
feat: Add user details display to report
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.
2024-11-21 20:57:29 +01:00
1dac3d1e99
feat: Enhances question detail display in reports
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.
2024-11-21 20:54:21 +01:00
77614bc8c3
fix: Filters empty question grades
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.
2024-11-21 20:52:40 +01:00
0388d71ef9
fix: Fixes retrieval of question grades
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.
2024-11-21 20:51:24 +01:00
6692dbb617
fix: Fix multiple grade entries in attempts table
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.
2024-11-21 20:48:10 +01:00
9b823767ca
fix: Fix question_attempts processing logic
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.
2024-11-21 20:45:58 +01:00
52680853a3
fix: Fix question usage and display total quiz grade
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.
2024-11-21 20:44:27 +01:00
d983f550bf
fix: Refactors question processing logic
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.
2024-11-21 20:38:23 +01:00
afb5e818ad
fix: Fix incorrect quiz ID field in queries
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.
2024-11-21 20:08:44 +01:00
59e82e4649
fix: Fixes quiz question retrieval method
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.
2024-11-21 20:07:17 +01:00
06d6d26b6d
fix: Removes course-specific question fetch
Moves question retrieval outside course loop to improve
performance by avoiding redundant database queries for
each course iteration.
2024-11-21 20:02:34 +01:00
e3fd691910
fix: Extract user selection components to classes
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.
2024-11-21 19:59:07 +01:00