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

Side by Side 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.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sitescripts/urlfixer/README.md ('k') | sitescripts/urlfixer/web/calculateScores.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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>
OLDNEW
« 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