Browse Source

Commas in numbers.

master
Ben Kurtovic 8 years ago
parent
commit
3433a3a6b0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      templates/index.mako

+ 2
- 2
templates/index.mako View File

@@ -24,11 +24,11 @@
<table>
<tr>
<td>TIF</td>
<td>${"{0:.2f}".format(result["tif"])} <span class="unit">views/min</span></td>
<td>${"{0:,.2f}".format(result["tif"])} <span class="unit">views/min</span></td>
</tr>
<tr>
<td>Transclusions</td>
<td>${result["transclusions"]} <span class="unit">pages</span></td>
<td>${"{0:,}".format(result["transclusions"])} <span class="unit">pages</span></td>
</tr>
<tr>
<td>Protection</td>


Loading…
Cancel
Save