- Author:
- showell
- Posted:
- May 12, 2009
- Language:
- Python
- Version:
- 1.0
- Tags:
- template debugging
- Score:
- -1 (after 1 ratings)
Add the line shown, or something similar, to your settings/dev.py, so that you can more clearly see when django is silently hiding errors in your template tags.
1 | TEMPLATE_STRING_IF_INVALID = 'XXXXXXXXXXXXXXXXXXX'
|
More like this
- Automatically setup raw_id_fields ForeignKey & OneToOneField by agusmakmun 8 months ago
- Crispy Form by sourabhsinha396 8 months, 4 weeks ago
- ReadOnlySelect by mkoistinen 9 months, 1 week ago
- Verify events sent to your webhook endpoints by santos22 10 months, 1 week ago
- Django Language Middleware by agusmakmun 10 months, 2 weeks ago
Comments
Don't forget that you can insert '%s' as a placeholder for the template variable name. It's usefull to pinpoint bugs. For instance :
TEMPLATE_STRING_IF_INVALID = '{{ %s }}'
#
Thanks for the tip! I was not aware of that.
#
Please login first before commenting.