Transmogrifying - sequence five initiated.

This commit is contained in:
=
2012-09-07 22:22:32 +01:00
parent 2f47463fa3
commit 857e2e8e4f
2 changed files with 34 additions and 21 deletions

View File

@@ -1,10 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
</head>
<body>
<img src="{{ STATIC_URL }}img/500.png" alt="404"/>
<div class="container">
<div class="row">
<div class="alert alert-error">
<strong>That's a 404..</strong>
<p>Something's not where it should be..</p>
</div>
<iframe width="560" height="315" src="http://www.youtube.com/embed/QqaQ_Bhgmrc" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</body>
</html>

View File

@@ -1,19 +1,26 @@
{% extends "admin/base_site.html" %}
{% load i18n %}
{% load url from future %}
<html>
<head>
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="alert alert-error">
<strong>That's a 500..</strong>
{% block breadcrumbs %}
<div class="breadcrumbs">
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
&rsaquo; {% trans 'Server error' %}
<p>This means something's gone wrong under the hood.</p>
</div>
<p>Emails have been sent and meetings have been scheduled.
<blockquote>
We'll round-table, brainstorm and apply some blue-sky thinking. We'll have her sorted, lickety
split.
</blockquote>
</p>
<p>
<img src="https://dl.dropbox.com/u/4003020/500.png" alt="500"/>
</p>
</div>
</div>
{% endblock %}
{% block title %}{% trans 'Server error (500)' %}{% endblock %}
{% block content %}
<h1>{% trans 'Server Error <em>(500)</em>' %}</h1>
<p>{% trans "There's been an error. It's been reported to the site administrators via e-mail and should be fixed
shortly. Thanks for your patience." %}</p>
<img src="{{ STATIC_URL }}/img/500.png" alt="500"/>
{% endblock %}
</body>
</html>