MDL-86677 mod_quiz: let the summary of attempt table be striped

This commit is contained in:
Luca Bösch
2025-12-05 08:42:53 +01:00
parent d58091724b
commit 07a58d1f90
+1 -1
View File
@@ -756,7 +756,7 @@ class renderer extends plugin_renderer_base {
public function summary_table($attemptobj, $displayoptions) {
// Prepare the summary table header.
$table = new html_table();
$table->attributes['class'] = 'table generaltable quizsummaryofattempt table-hover';
$table->attributes['class'] = 'table generaltable table-striped quizsummaryofattempt table-hover';
$table->head = [get_string('question', 'quiz'), get_string('status', 'quiz')];
$table->align = ['left', 'left'];
$table->size = ['', ''];