diff options
author | Prabhu Ramachandran | 2018-02-15 19:28:53 +0530 |
---|---|---|
committer | GitHub | 2018-02-15 19:28:53 +0530 |
commit | 3e4fa8a4b6f0b16731f27b724fad119ee74dc618 (patch) | |
tree | 7e326dcfa3897f624c8c3cf637543646b86b7491 /yaksh/templates/404.html | |
parent | 7a89ac6dabe7d2b8d914c8efde30c65f365bd771 (diff) | |
parent | 617d09ca9b05185d9a2310c106360091ed8a1b1a (diff) | |
download | online_test-3e4fa8a4b6f0b16731f27b724fad119ee74dc618.tar.gz online_test-3e4fa8a4b6f0b16731f27b724fad119ee74dc618.tar.bz2 online_test-3e4fa8a4b6f0b16731f27b724fad119ee74dc618.zip |
Merge pull request #436 from adityacp/fixes_lesson_feature
Additions and fixes for lesson feature
Diffstat (limited to 'yaksh/templates/404.html')
-rw-r--r-- | yaksh/templates/404.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/yaksh/templates/404.html b/yaksh/templates/404.html index e9d99de..d4777f2 100644 --- a/yaksh/templates/404.html +++ b/yaksh/templates/404.html @@ -1,7 +1,13 @@ {% extends "base.html" %} +{% block pagetitle %} <h2>Yaksh</h2> {% endblock %} + {% block content %} +<center> It seems that you have encountered an error -Type of Error - {{ exception }} +<br> Please contact your administrator +<br><br> +<div class="alert alert-danger">Error Message:- {{exception}}</div> +</center> {% endblock %} |