From 139df3713fcece776f0721d6b7b64e8efd0e08f3 Mon Sep 17 00:00:00 2001 From: Carolien Klep Date: Thu, 27 Sep 2012 10:14:26 +0530 Subject: [PATCH] added 404 and 500 pages --- chaloBEST/templates/404.html | 25 +++++++++++++++++++++++++ chaloBEST/templates/500.html | 24 ++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 chaloBEST/templates/404.html create mode 100644 chaloBEST/templates/500.html diff --git a/chaloBEST/templates/404.html b/chaloBEST/templates/404.html new file mode 100644 index 0000000..6227e60 --- /dev/null +++ b/chaloBEST/templates/404.html @@ -0,0 +1,25 @@ +{% extends 'innov/base.html' %} +{% block content %} + +
+ +
+
+
+

Sorry!

+

We couldn't find what you are looking for.

+

Did the web-address change? Try to find your directions again via ChaloBEST home.

+

If you feel that you got here because of an error on the website, let us know what you tried to do.

+
+
+
+
+
+
+
+
+
+ +
+ +{% endblock %} diff --git a/chaloBEST/templates/500.html b/chaloBEST/templates/500.html new file mode 100644 index 0000000..43c119f --- /dev/null +++ b/chaloBEST/templates/500.html @@ -0,0 +1,24 @@ +{% extends 'innov/base.html' %} +{% block content %} + +
+ +
+
+
+

Something is wrong!

+

Looks like something broke on our system. When you got this page, we also got notified. We will fix it soon.

+

If feel the site is off for too long, please contact us.

+
+
+
+
+
+
+
+
+
+ +
+ +{% endblock %}