aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/checkin/error.html
diff options
context:
space:
mode:
Diffstat (limited to 'servo/templates/checkin/error.html')
-rw-r--r--servo/templates/checkin/error.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/servo/templates/checkin/error.html b/servo/templates/checkin/error.html
new file mode 100644
index 0000000..eaa45d5
--- /dev/null
+++ b/servo/templates/checkin/error.html
@@ -0,0 +1,15 @@
+{% extends "checkin/index.html" %}
+{% load i18n %}
+
+{% block title %}{% trans "An error occurred" %}{% endblock title %}
+
+{% block main %}
+<div class="container-narrow">
+ <div class="jumbotron">
+ <h1>{% trans "Oops!" %}</h1>
+ <p class="lead">{% trans "It appears that an error has occurred." %}</p>
+ <p>{{ message }}</p>
+ <a class="btn btn-large btn-success" href="{% url 'checkin-index' %}"><i class="icon-refresh icon-white"></i> {% trans "Try again" %}</a>
+ </div>
+</div>
+{% endblock main %}