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
- Browser-native date input field by kytta 1 month, 1 week ago
- Generate and render HTML Table by LLyaudet 1 month, 2 weeks ago
- My firs Snippets by GutemaG 1 month, 3 weeks ago
- FileField having auto upload_to path by junaidmgithub 3 months ago
- LazyPrimaryKeyRelatedField by LLyaudet 3 months, 1 week 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.