diff --git a/samples/bottle/views/welcome.html b/samples/bottle/views/welcome.html
index 943928a..b84f769 100644
--- a/samples/bottle/views/welcome.html
+++ b/samples/bottle/views/welcome.html
@@ -37,7 +37,7 @@
| {{ sport }} |
- {{ '%.1f' % (stats.get('THIS_WEEK', 0.0) / 1000) }} |
- {{ '%.1f' % (stats.get('LAST_WEEK', 0.0) / 1000) }} |
- {{ '%.1f' % (stats.get('THIS_MONTH', 0.0) / 1000) }} |
- {{ '%.1f' % (stats.get('LAST_MONTH', 0.0) / 1000) }} |
- {{ '%.1f' % (stats.get('OVERALL', 0.0) / 1000) }} |
+ {{ '%.1f' % (stats.get('THIS_WEEK', 0.0)) }} |
+ {{ '%.1f' % (stats.get('LAST_WEEK', 0.0)) }} |
+ {{ '%.1f' % (stats.get('THIS_MONTH', 0.0)) }} |
+ {{ '%.1f' % (stats.get('LAST_MONTH', 0.0)) }} |
+ {{ '%.1f' % (stats.get('OVERALL', 0.0)) }} |
%end
@@ -74,4 +74,4 @@