Browse Source

Add custom 404 and 500 error pages

Gu1 11 years ago
parent
commit
a8de9eaab2
4 changed files with 46 additions and 4 deletions
  1. 18 0
      ffdnispdb/templates/404.html
  2. 13 0
      ffdnispdb/templates/500.html
  3. 4 4
      ffdnispdb/templates/layout.html
  4. 11 0
      ffdnispdb/views.py

+ 18 - 0
ffdnispdb/templates/404.html

@@ -0,0 +1,18 @@
+{% extends 'layout.html' %}
+{% block page_title %}{% trans %}Page not found{% endtrans %}{% endblock %}
+{% block body %}
+      <pre style="line-height: 16px;">
+                      /\___/\
+                      ) . . (
+                     =\  -  /=
+   ___ _____    ___    )   (
+  /   |  _  |  /   |  /     \
+ / /| | |/' | / /| |  )     (
+/ /_| |  /| |/ /_| | /       \
+\___  \ |_/ /\___  | \       /
+    |_/\___/     |_/  \__ __/
+                         ))
+                        //
+                       ((
+                       \)</pre>
+{%- endblock %}

+ 13 - 0
ffdnispdb/templates/500.html

@@ -0,0 +1,13 @@
+{% extends 'layout.html' %}
+{% block page_title %}{% trans %}Internal error{% endtrans %}{% endblock %}
+{% block body %}
+      <pre style="line-height: 16px;">
+
+ _____  _____  _____       ,/|         _.--''^``-...___.._.,;
+|  ___||  _  ||  _  |     /, \'.     _-'          ,--,,,--'''
+|___ \ | |/' || |/' |    { \    `_-''       '    /}
+    \ \|  /| ||  /| |     `;;'            ;   ; ;
+/\__/ /\ |_/ /\ |_/ / ._.--''     ._,,, _..'  .;.'
+\____/  \___/  \___/   (,_....----'''     (,..--''
+</pre>
+{%- endblock %}

+ 4 - 4
ffdnispdb/templates/layout.html

@@ -36,10 +36,10 @@
             <input type="text" id="search-input" class="search-query input-medium" name="q" placeholder="{{ _("Search") }}" />
           </form>
           <ul class="nav pull-right">
-            {{ menu_item(_("Home"), '.home') }}
-            {{ menu_item(_("Project List"), '.project_list') }}
-            {{ menu_item(_("Format"), '.format') }}
-            {{ menu_item(_("API"), '.api') }}
+            {{ menu_item(_("Home"), 'ispdb.home') }}
+            {{ menu_item(_("Project List"), 'ispdb.project_list') }}
+            {{ menu_item(_("Format"), 'ispdb.format') }}
+            {{ menu_item(_("API"), 'ispdb.api') }}
             <li class="divider-vertical"></li>
           </ul>
         </div>

+ 11 - 0
ffdnispdb/views.py

@@ -35,6 +35,17 @@ def home():
 def project_list():
     return render_template('project_list.html', projects=ISP.query.filter_by(is_disabled=False))
 
+
+@ispdb.app_errorhandler(404)
+def page_not_found(e):
+    return render_template('404.html'), 404
+
+
+@ispdb.app_errorhandler(500)
+def page_not_found(e):
+    return render_template('500.html'), 500
+
+
 # this needs to be cached
 @ispdb.route('/isp/map_data.json', methods=['GET'])
 def isp_map_data():