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 @@ ...@@ -214,7 +214,7 @@
#end #end
</div> ## END o_qti_metainfo </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"> <div class="o_qti_sectionsummary row o_block_large">
#foreach($itemResult in $itemResults) #foreach($itemResult in $itemResults)
#if(${itemResult.isSection()} && ${itemResult.metadataVisible}) #if(${itemResult.isSection()} && ${itemResult.metadataVisible})
...@@ -334,7 +334,7 @@ ...@@ -334,7 +334,7 @@
<div class="o_qti_section"> <div class="o_qti_section">
#set($inSection = true) #set($inSection = true)
## Hide section title / metadata if there is only one section, redundant with test overview ## 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> <a id="o_result_${velocityCount}" title="$r.escapeHtml($itemResult.title)"></a>
<h3><i class="o_icon $itemResult.cssClass"> </i> $r.escapeHtml($itemResult.title) <h3><i class="o_icon $itemResult.cssClass"> </i> $r.escapeHtml($itemResult.title)
#if($itemResult.metadataVisible) #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 { ...@@ -687,7 +687,6 @@ public class ImsQTI21Test {
.closeAssessmentResults() .closeAssessmentResults()
.assertOnCourseAttempts(1) .assertOnCourseAttempts(1)
.assertOnCourseAssessmentTestScore(1) .assertOnCourseAssessmentTestScore(1)
.showAssessmentResults()
.assertOnAssessmentResults(); .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