Unicode error hint
The string that could not be encoded/decoded was: {{ unicode_hint }}
Template-loader postmortem
{% if postmortem %}Django tried loading these templates, in this order:
{% for entry in postmortem %}Using engine {{ entry.backend.name }}:
- 
                {% if entry.tried %}
                    {% for attempt in entry.tried %}
                        
- {{ attempt.0.loader_name }}: {{ attempt.0.name }} ({{ attempt.1 }}) 
                    {% endfor %}
                {% else %}
- This engine did not provide a list of tried templates. {% endif %}
No templates were found because your 'TEMPLATES' setting is not configured.
{% endif %}Error during template rendering
In template {{ template_info.name }}, error at line {{ template_info.line }}
{{ template_info.message|force_escape }}
| {{ source_line.0 }} | {{ template_info.before }}{{ template_info.during }}{{ template_info.after }} | 
|---|---|
| {{ source_line.0 }} | {{ source_line.1 }} | 
Traceback{% if not is_email %} Switch to copy-and-paste view{% endif %}
- 
      {% for frame in frames %}
        {% ifchanged frame.exc_cause %}{% if frame.exc_cause %}
          
- {% if frame.exc_cause_explicit %} The above exception ({{ frame.exc_cause|force_escape }}) was the direct cause of the following exception: {% else %} During handling of the above exception ({{ frame.exc_cause|force_escape }}), another exception occurred: {% endif %}{% endif %}{% endifchanged %}
- 
          {% if frame.tb %}
            {{ frame.filename }}, line {{ frame.lineno }}, in {{ frame.function }} {% elif forloop.first %} None {% else %} Traceback: None {% endif %} {% if frame.context_line %}{% if frame.pre_context and not is_email %}{% endif %} {% if frame.vars %} {% if is_email %}- 
                {% for line in frame.pre_context %}
                  
- {{ line }}{% endfor %}
 - {{ frame.context_line }}{{ frame.colno }}{% if not is_email %} …{% endif %}
 - 
                  {% for line in frame.post_context %}
                  
- {{ line }}{% endfor %}
 {% else %}Local Vars{% endif %} {% endif %}Local vars{% endif %}
 {% if not is_email %}Variable Value {{ var.0 }} {{ var.1 }}{% endfor %}
Request information
{% if request %} {% if user_str %}USER
{{ user_str }}
{% endif %}GET
{% if request.GET %}| Variable | Value | 
|---|---|
| {{ k }} | {{ v|pprint }} | 
No GET data
{% endif %}POST
{% if filtered_POST_items %}| Variable | Value | 
|---|---|
| {{ k }} | {{ v|pprint }} | 
No POST data
{% endif %}FILES
{% if request.FILES %}| Variable | Value | 
|---|---|
| {{ k }} | {{ v|pprint }} | 
No FILES data
{% endif %}COOKIES
{% if request.COOKIES %}| Variable | Value | 
|---|---|
| {{ k }} | {{ v|pprint }} | 
No cookie data
{% endif %}META
| Variable | Value | 
|---|---|
| {{ k }} | {{ v|pprint }} | 
Request data not supplied
{% endif %}Settings
Using settings module {{ settings.SETTINGS_MODULE }}
  | Setting | Value | 
|---|---|
| {{ k }} | {{ v|pprint }} |