OLD | NEW |
(Empty) | |
| 1 <!-- This Source Code is subject to the terms of the Mozilla Public License |
| 2 - version 2.0 (the "License"). You can obtain a copy of the License at |
| 3 - http://mozilla.org/MPL/2.0/. --> |
| 4 |
| 5 <!DOCTYPE html> |
| 6 <html lang="en"> |
| 7 <head> |
| 8 <title>URL Fixer Correction Correctness Scores</title> |
| 9 </head> |
| 10 <body> |
| 11 <table border="1" rules="cols"> |
| 12 <tr> |
| 13 <th>domain</th> |
| 14 <th>domain correctness</th> |
| 15 <th>correction correctness</th> |
| 16 </tr> |
| 17 {%- for domain in domains %} |
| 18 <tr> |
| 19 <td>{{domain.domain}}</td> |
| 20 <td>{{domain.domain_correct}}</td> |
| 21 <td>{{domain.correction_correct}}</td> |
| 22 </tr> |
| 23 {%- endfor %} |
| 24 </table> |
| 25 </body> |
| 26 </html> |
OLD | NEW |