diff options
author | Filipp Lepalaan <filipp@mac.com> | 2017-04-24 22:26:17 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2017-04-24 22:26:17 +0300 |
commit | 85e92ff2ee4ca30e0144790a1d95b8023595bf2f (patch) | |
tree | ff38ef1fe1957e00732ab43f891b7915a7a97274 /servo/templates/checkin/error.html | |
parent | 5934831e5921b78651418a589da3c67ed320a309 (diff) | |
download | Servo-85e92ff2ee4ca30e0144790a1d95b8023595bf2f.tar.gz Servo-85e92ff2ee4ca30e0144790a1d95b8023595bf2f.tar.bz2 Servo-85e92ff2ee4ca30e0144790a1d95b8023595bf2f.zip |
Cleanup
Diffstat (limited to 'servo/templates/checkin/error.html')
-rw-r--r-- | servo/templates/checkin/error.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/servo/templates/checkin/error.html b/servo/templates/checkin/error.html index d21e91f..ee0ecc9 100644 --- a/servo/templates/checkin/error.html +++ b/servo/templates/checkin/error.html @@ -6,10 +6,11 @@ {% block main %} <div class="container-narrow"> <div class="jumbotron"> - <img src="{{ STATIC_URL }}/images/sadmac.png"/> - <p class="lead">{% trans "It appears that an error has occurred." %}</p> + <img src="{{ STATIC_URL }}/images/sadmac.png" alt="{% trans "An error occurred" %}" title="{% trans "An error occurred" %}"/> + <p class="lead">{% trans "An error 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> + <a class="btn btn-large btn-success" href="{{ url }}"><i class="glyphicon glyphicon-repeat"></i> {% trans "Try again" %}</a> + <a class="btn btn-large btn-default" href="{% url 'accounts-login' %}"><i class="icon-refresh icon-white"></i> {% trans "Return to login page" %}</a> </div> </div> {% endblock main %} |