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
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
> 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
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
4 matches
Mail list logo