Hey everyone..
I was trying to customize django's admin interface but a problem has
occurred.
here is my code in change_form.html
{% extends "admin/change_form.html" %}
{% block form_top %}
<p>Insert meaningful help message here...</p>
{% endblock %}
and here is the error
TemplateSyntaxError at /admin/blog/entry/add/
Caught RuntimeError while rendering: maximum recursion depth exceeded
while calling a Python object
Request Method: GET
Request URL:
http://127.0.0.1:8000/admin/blog/entry/add/
Django Version: 1.2.1
Exception Type: TemplateSyntaxError
Exception Value:
Caught RuntimeError while rendering: maximum recursion depth exceeded
while calling a Python object
Exception Location: /usr/local/lib/python2.6/dist-packages/django/
utils/text.py in unescape_string_literal, line 273
Python Executable: /usr/bin/python
Python Version: 2.6.5
Template error
In template /home/owais/Projects/curry/curry/static/templates/admin/
change_form.html, error at line 1
Caught RuntimeError while rendering: maximum recursion depth exceeded
1 {% extends "admin/change_form.html" %}
2
3 {% block form_top %}