summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-07-23 10:57:14 +0200
committerAurélien Bompard <aurelien@bompard.org>2013-07-23 10:57:14 +0200
commitbf2de4165365d96dcafdfc769ac6020348a45c6e (patch)
tree7b07cff8b292322f0806b93cbe123ff05d2e99bd
parent64faa46a156b76e04c3cc1852055e6c0393e6f91 (diff)
downloadhyperkitty-bf2de4165365d96dcafdfc769ac6020348a45c6e.tar.gz
hyperkitty-bf2de4165365d96dcafdfc769ac6020348a45c6e.tar.xz
hyperkitty-bf2de4165365d96dcafdfc769ac6020348a45c6e.zip
Drop useless error 500 template
-rw-r--r--hyperkitty/templates/500.html43
1 files changed, 0 insertions, 43 deletions
diff --git a/hyperkitty/templates/500.html b/hyperkitty/templates/500.html
deleted file mode 100644
index d1ca064..0000000
--- a/hyperkitty/templates/500.html
+++ /dev/null
@@ -1,43 +0,0 @@
-{% extends "base.html" %}
-{% load url from future %}
-{% load i18n %}
-
-{% block title %}
-Error ! - {{ app_name|title }}
-{% endblock %}
-
-{% block content %}
- <style>
- #contentBox
- {
- padding:10px;
- font-family: 'Times New Roman';
- font-size:20px;
- color:#444;
- margin-left:300px;
- margin-top:100px;
- }
- .hello
- {
- font-size:100px;
- color:#444;
- font-family: 'Times New Roman';
- }
- a
- {
- color:#323232;
- }
- </style>
-
- <div style="margin: 60px 40px 0 40px;">
- <div id="contentBox" style="width:50%; ">
- <span class="hello"> 500 </span>
- <br/><br/>
- <span style="font-size:60px; color:#444;font-family: 'Times New Roman';"> Oh! Snap </span>
- <br/><br/>
- There's been an error somewhere, sorry.
- <a href ="{% url 'root' %}">Back home</a>
- </div>
- </div>
-
-{% endblock %}