diff options
author | volpino <fox91@anche.no> | 2012-11-29 12:02:43 +0100 |
---|---|---|
committer | volpino <fox91@anche.no> | 2012-11-29 12:02:43 +0100 |
commit | 058a2fe38c73309468b539b0ef0c135af64c245b (patch) | |
tree | ebc669b8a86f297c167c7dce3e4ae964a902494d | |
parent | euscanwww: Indentation must be a multiple of 4 (diff) | |
download | euscan-058a2fe38c73309468b539b0ef0c135af64c245b.tar.gz euscan-058a2fe38c73309468b539b0ef0c135af64c245b.tar.bz2 euscan-058a2fe38c73309468b539b0ef0c135af64c245b.zip |
euscanwww: Added floatformat to average confidence to round
Signed-off-by: volpino <fox91@anche.no>
-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> |