diff options
author | Prabhu Ramachandran | 2017-02-01 12:42:33 +0530 |
---|---|---|
committer | GitHub | 2017-02-01 12:42:33 +0530 |
commit | d400e03973f1eef6847c8b6f88ac14e39485bf00 (patch) | |
tree | ef1346d8f392234be8ab96cc852da40d6a281d91 | |
parent | c2617f92ea681c5376cd37ea6ce48755a08f319a (diff) | |
parent | 87bb45143c659a60d097ea4ec92d4b43bec92bc4 (diff) | |
download | online_test-d400e03973f1eef6847c8b6f88ac14e39485bf00.tar.gz online_test-d400e03973f1eef6847c8b6f88ac14e39485bf00.tar.bz2 online_test-d400e03973f1eef6847c8b6f88ac14e39485bf00.zip |
Merge pull request #193 from FOSSEE/fix-quit-message
Should fix #189.
-rw-r--r-- | yaksh/templates/yaksh/complete.html | 2 | ||||
-rw-r--r-- | yaksh/templates/yaksh/quit.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/yaksh/templates/yaksh/complete.html b/yaksh/templates/yaksh/complete.html index 01d5bf6..7bff206 100644 --- a/yaksh/templates/yaksh/complete.html +++ b/yaksh/templates/yaksh/complete.html @@ -22,7 +22,7 @@ {% else %} <tr class="danger"> <td> {{ question }} </td> - <td> Not Attempted </td> + <td> Not completed </td> {% endif %} </tr> </tbody> diff --git a/yaksh/templates/yaksh/quit.html b/yaksh/templates/yaksh/quit.html index a897b3c..d18b790 100644 --- a/yaksh/templates/yaksh/quit.html +++ b/yaksh/templates/yaksh/quit.html @@ -20,7 +20,7 @@ {% else %} <tr class="danger"> <td> {{ question }} </td> - <td> Not Attempted </td> + <td> Not completed </td> {% endif %} </tr> </tbody> |