Re: Error while customizing admin/change_form.html

2011-07-16 Thread I159
Or simply add folder with same name of your app. For admin//.html -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/9Qe-eX2T5X8J. To post to this group, send

Re: Error while customizing admin/change_form.html

2010-06-17 Thread Richard Bolt
You're getting a recursion error because you're trying to extend admin/ change_form.html with itself. In other words your copy of admin/ change_form.html in the directory location you have is the default admin/change_form.html template now... You can either: 1. Copy the entire admin/change_form.ht

Re: Error while customizing admin/change_form.html

2010-06-15 Thread igor.potapenko
> here is my code in change_form.html > > {% extends "admin/change_form.html" %} ... and ... > Caught RuntimeError while rendering: maximum recursion depth exceeded You try to extend template with itself. -- You received this message because you are subscribed to the Google Groups "Django us

Error while customizing admin/change_form.html

2010-06-15 Thread Owais Lone
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 %} Insert meaningful help message here... {% endblock %} and here is the error TemplateSyntaxError a