Index: sitescripts/urlfixer/template/showScores.html |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/sitescripts/urlfixer/template/showScores.html |
@@ -0,0 +1,26 @@ |
+<!-- This Source Code is subject to the terms of the Mozilla Public License |
+ - version 2.0 (the "License"). You can obtain a copy of the License at |
+ - http://mozilla.org/MPL/2.0/. --> |
+ |
+<!DOCTYPE html> |
+<html lang="en"> |
+<head> |
+ <title>URL Fixer Correction Correctness Scores</title> |
+</head> |
+<body> |
+ <table border="1" rules="cols"> |
+ <tr> |
+ <th>domain</th> |
+ <th>domain correctness</th> |
+ <th>correction correctness</th> |
+ </tr> |
+ {%- for domain in domains %} |
+ <tr> |
+ <td>{{domain.domain}}</td> |
+ <td>{{domain.domain_correct}}</td> |
+ <td>{{domain.correction_correct}}</td> |
+ </tr> |
+ {%- endfor %} |
+ </table> |
+</body> |
+</html> |