~netlandish/django-wiki

4d11e4b0389e28d79dcdb30e148718a8a1be17c8 — Benjamin Bach 6 years ago 4e82588 + a1b891c
Merge pull request #814 from atombrella/correct_500_language

Corrected the language in the testproject's 500 page.
1 files changed, 6 insertions(+), 2 deletions(-)

M testproject/testproject/templates/500.html
M testproject/testproject/templates/500.html => testproject/testproject/templates/500.html +6 -2
@@ 1,7 1,7 @@
{% extends "wiki/base.html" %}
{% load wiki_tags i18n %}

{% block pagetitle %}{% trans "500 Server err" %}{% endblock %}
{% block pagetitle %}{% trans "500 Server error" %}{% endblock %}

{% block wiki_breadcrumbs %}{% endblock %}



@@ 10,7 10,11 @@
<h1 class="page-header">{% trans "500 - ERROR" %}</h1>

<div class="error">
  <p>{% trans "Oh god no the demo has failed. Please rest asured that an open source developer is the logs to resolve this, because it's fun!!" %}</p>
  <p>{% blocktrans trimmed %]
    Oh god no the demo has failed. Please rest assured that an open source developer is reading the
    logs to resolve this, because it's fun!!
    {% endblocktrans %}
  </p>
</div>

{% endblock %}