diff options
author | volpino <fox91@anche.no> | 2012-11-29 12:02:43 +0100 |
---|---|---|
committer | volpino <fox91@anche.no> | 2013-02-23 12:29:04 +0100 |
commit | 21d026becfc61e952d10f2f7ac0ab5ac5a0d4b8b (patch) | |
tree | eb1ce54d9989cabfcc9fb84c5197d99da4a5c711 /euscanwww/djeuscan/templates/euscan/statistics.html | |
parent | euscanwww: Indentation must be a multiple of 4 (diff) | |
download | euscan-21d026becfc61e952d10f2f7ac0ab5ac5a0d4b8b.tar.gz euscan-21d026becfc61e952d10f2f7ac0ab5ac5a0d4b8b.tar.bz2 euscan-21d026becfc61e952d10f2f7ac0ab5ac5a0d4b8b.zip |
euscanwww: Added floatformat to average confidence to round
Signed-off-by: volpino <fox91@anche.no>
Diffstat (limited to 'euscanwww/djeuscan/templates/euscan/statistics.html')
-rw-r--r-- | euscanwww/djeuscan/templates/euscan/statistics.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/euscanwww/djeuscan/templates/euscan/statistics.html b/euscanwww/djeuscan/templates/euscan/statistics.html index b4fccad..3179e56 100644 --- a/euscanwww/djeuscan/templates/euscan/statistics.html +++ b/euscanwww/djeuscan/templates/euscan/statistics.html @@ -63,7 +63,7 @@ </a> </td> <td>{{ handler.n }}</td> - <td>{{ handler.avg_conf }}</td> + <td>{{ handler.avg_conf|floatformat:1 }}</td> </tr> {% endfor %} </tbody> |