Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/urlfixer/template/showScores.html

Issue 8626108: Added /resetScore, /refreshScore and /showScore features to URL Fixer server-side (Closed)
Patch Set: Created Oct. 22, 2012, 4:08 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sitescripts/urlfixer/README.md ('k') | sitescripts/urlfixer/web/calculateScores.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « sitescripts/urlfixer/README.md ('k') | sitescripts/urlfixer/web/calculateScores.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld