Skip to content
Snippets Groups Projects
Commit 890b791b authored by srosse's avatar srosse
Browse files

no-jira: allow pre compile of all templates, recompile openolat theme, fix selenium test

parent 2a349b2c
No related branches found
No related tags found
No related merge requests found
......@@ -214,7 +214,7 @@
#end
</div> ## END o_qti_metainfo
#if ($testResults.numberOfSections > 1 || !$options.isMetadata() )
#if (($r.isNotNull($testResults.numberOfSections) && $testResults.numberOfSections > 1) || !$options.isMetadata() )
<div class="o_qti_sectionsummary row o_block_large">
#foreach($itemResult in $itemResults)
#if(${itemResult.isSection()} && ${itemResult.metadataVisible})
......@@ -334,7 +334,7 @@
<div class="o_qti_section">
#set($inSection = true)
## Hide section title / metadata if there is only one section, redundant with test overview
#if ($testResults.numberOfSections > 1)
#if ($r.isNotNull($testResults.numberOfSections) && $testResults.numberOfSections > 1)
<a id="o_result_${velocityCount}" title="$r.escapeHtml($itemResult.title)"></a>
<h3><i class="o_icon $itemResult.cssClass"> </i> $r.escapeHtml($itemResult.title)
#if($itemResult.metadataVisible)
......
This diff is collapsed.
source diff could not be displayed: it is too large. Options to address this: view the blob.
source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -687,7 +687,6 @@ public class ImsQTI21Test {
.closeAssessmentResults()
.assertOnCourseAttempts(1)
.assertOnCourseAssessmentTestScore(1)
.showAssessmentResults()
.assertOnAssessmentResults();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment