Changeset 755
- Timestamp:
- 05/09/07 19:20:31 (1 year ago)
- Files:
-
- cherokee-www/trunk/cherokee/templates/404.html (modified) (1 diff)
- cherokee-www/trunk/cherokee/templates/500.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee-www/trunk/cherokee/templates/404.html
r734 r755 1 1 {% extends "base.html" %} 2 {% load i18n %} 2 3 3 {% block title %} | Not Found{% endblock %} 4 {% block title %} | {% trans "Not Found" %}{% endblock %} 5 6 {% block content %} 7 <h1>{% trans "Page Not Found" %}</h1> 8 <p>{% trans "Unable to find" %} <strong>{{ request_path }}</strong>.</p> 9 {% endblock %} cherokee-www/trunk/cherokee/templates/500.html
r734 r755 1 1 {% extends "base.html" %} 2 {% load i18n %} 2 3 3 {% block title %} | Internal Server Error{% endblock %} 4 {% block title %} | {% trans "Internal Server Error" %}{% endblock %} 5 6 {% block content %} 7 <h1>{% trans "Internal Server Error" %}</h1> 8 <p>{% trans "Something bad has happened. An error report has been sent to the developers of this website." %}</p> 9 {% endblock %}