diff options
author | adityacp | 2020-09-12 11:44:01 +0530 |
---|---|---|
committer | adityacp | 2020-09-12 11:44:01 +0530 |
commit | b1d2b88746fc670d7362f9b4d175d5e570f3ac77 (patch) | |
tree | 7225713597b09645ce7b75ffe44271691e3e28b0 /yaksh/templates/base.html | |
parent | bee8d54d8ae094db5e3c9c04c5e28fb5b2abb1df (diff) | |
download | online_test-b1d2b88746fc670d7362f9b4d175d5e570f3ac77.tar.gz online_test-b1d2b88746fc670d7362f9b4d175d5e570f3ac77.tar.bz2 online_test-b1d2b88746fc670d7362f9b4d175d5e570f3ac77.zip |
Mulitple changes
- Remove all alerts and add toast messages
- Accept user submissions for the lesson quiz and evaluate
- Initial lesson statistics
Diffstat (limited to 'yaksh/templates/base.html')
-rw-r--r-- | yaksh/templates/base.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/yaksh/templates/base.html b/yaksh/templates/base.html index 53edbee..8bf7fbc 100644 --- a/yaksh/templates/base.html +++ b/yaksh/templates/base.html @@ -22,6 +22,7 @@ <link rel="stylesheet" href="{% static 'yaksh/css/ontop.css' %}" type="text/css" /> <link rel="stylesheet" href="{% static 'yaksh/css/plyr.css' %}" /> <link rel="stylesheet" type="text/css" href="{% static 'yaksh/css/simplemde.min.css' %}"> + <link rel="stylesheet" href="{% static 'yaksh/css/toastr.min.css' %}" />"> {% block meta %} @@ -42,6 +43,8 @@ <script src="{% static 'yaksh/js/plyr.js' %}"></script> <script type="text/javascript" src="{% static 'yaksh/js/simplemde.min.js' %}"> </script> + <script type="text/javascript" src="{% static 'yaksh/js/toastr.min.js' %}"> + </script> <script> new WOW().init(); @@ -57,6 +60,22 @@ Checking...<img src="{% static 'yaksh/images/check_answer.gif' %}"/> </div> </div> + <div id="loader"> + <div id="state1"> + <div class="spinner-grow text-success" role="status"> + <span class="sr-only">Loading...</span> + </div> + <div class="spinner-grow text-danger" role="status"> + <span class="sr-only">Loading...</span> + </div> + <div class="spinner-grow text-warning" role="status"> + <span class="sr-only">Loading...</span> + </div> + <div class="spinner-grow text-primary" role="status"> + <span class="sr-only">Loading...</span> + </div> + </div> + </div> {% block nav %} {% endblock %} |