Browse Source

Report possible misses as well as known skips.

pull/24/head
Ben Kurtovic 9 years ago
parent
commit
b2894c6c0a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      templates/index.mako

+ 2
- 2
templates/index.mako View File

@@ -234,9 +234,9 @@
${len(result.sources) - 10} URL${"s" if len(result.sources) > 11 else ""} with lower confidence hidden. <a id="show-additional-sources" href="#">Show them.</a> ${len(result.sources) - 10} URL${"s" if len(result.sources) > 11 else ""} with lower confidence hidden. <a id="show-additional-sources" href="#">Show them.</a>
</div> </div>
% endif % endif
% if skips:
% if skips or result.possible_miss:
<div class="cv-source-footer"> <div class="cv-source-footer">
Since a suspected source was found with a high confidence value, some URLs were skipped. <a href="${request.url | httpsfix, h}&amp;noskip=1">Check all URLs.</a>
Since a suspected source was found with a high confidence value, some URLs ${"were skipped" if skips else "may have been missed"}. <a href="${request.url | httpsfix, h}&amp;noskip=1">Check all URLs.</a>
</div> </div>
% endif % endif
</div> </div>


Loading…
Cancel
Save