Changeset 755

Show
Ignore:
Timestamp:
05/09/07 19:20:31 (1 year ago)
Author:
brian
Message:

added content to 404 and 500 error handling templates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee-www/trunk/cherokee/templates/404.html

    r734 r755  
    11{% extends "base.html" %} 
     2{% load i18n %} 
    23 
    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  
    11{% extends "base.html" %} 
     2{% load i18n %} 
    23 
    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 %}