diff --git a/src/main/resources/templates/HtmlReport.vsl b/src/main/resources/templates/HtmlReport.vsl
index 293d796a9..12ed2c583 100644
--- a/src/main/resources/templates/HtmlReport.vsl
+++ b/src/main/resources/templates/HtmlReport.vsl
@@ -359,14 +359,12 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
##:
- #if($cpeCount>1)
+ #if ($cpeCount>1)
Several possible CPEs where identified. If one of the following are correct please update the configuration
to set the hash code for this file to the CPE entry below.
- #end
- #if($dependency.getIdentifiers().size()==0)
+ #elseif ($dependency.getIdentifiers().size()==0)
- #end
- #if($dependency.getIdentifiers().size()>0)
+ #elseif ($dependency.getIdentifiers().size()>0)
#foreach($id in $dependency.getIdentifiers())
##yes, we are HTML Encoding the href. this is okay. We can't URL encode as we have to trust the analyzer here...