diff options
author | ankitjavalkar | 2020-08-26 15:59:46 +0530 |
---|---|---|
committer | ankitjavalkar | 2020-08-26 15:59:46 +0530 |
commit | 5c0d64f8a100a74bda7f9160f2f33db7807c3171 (patch) | |
tree | bef7b937725d0d59bc4a5b00945dba85250c2875 | |
parent | 7b6297ca80b0ec5bc86cfaf3971d7a50064d930d (diff) | |
download | online_test-5c0d64f8a100a74bda7f9160f2f33db7807c3171.tar.gz online_test-5c0d64f8a100a74bda7f9160f2f33db7807c3171.tar.bz2 online_test-5c0d64f8a100a74bda7f9160f2f33db7807c3171.zip |
Add correct column name to question statistics page
-rw-r--r-- | yaksh/templates/yaksh/statistics_question.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/templates/yaksh/statistics_question.html b/yaksh/templates/yaksh/statistics_question.html index 58fd8db..606f5e9 100644 --- a/yaksh/templates/yaksh/statistics_question.html +++ b/yaksh/templates/yaksh/statistics_question.html @@ -19,7 +19,7 @@ {% if question_stats %} <p><b>Total number of participants: {{ total }}</b></p> <table class="table table-bordered table-responsive-sm"> - <tr class="bg-light yakshred"><th>Question</th><th>Type</th><th>Total</th><th>Answered</th></tr> + <tr class="bg-light yakshred"><th>Question</th><th>Type</th><th>Total</th><th>Answered Correctly</th></tr> {% for question, value in question_stats.items %} <tr><td>{{ question.summary }}</td><td>{{ question.type }}</td><td>{{value.1}}</td><td>{{ value.0 }} ({% widthratio value.0 value.1 100 %}%)</td></tr> {% endfor %} |