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
- Add custom fields to the built-in Group model by jmoppel 1 month, 1 week ago
- Month / Year SelectDateWidget based on django SelectDateWidget by pierreben 4 months, 3 weeks ago
- Python Django CRUD Example Tutorial by tuts_station 5 months, 1 week ago
- Browser-native date input field by kytta 6 months, 3 weeks ago
- Generate and render HTML Table by LLyaudet 7 months 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.