1 | TEMPLATE_STRING_IF_INVALID = 'XXXXXXXXXXXXXXXXXXX'
|
More like this
- Variable._resolve_lookup monkeypatch by showell 3 years, 6 months ago
- Silently-failing include tag by brutasse 2 years, 11 months ago
- Mod to allow simple_tag to access context by leaf 4 years, 7 months ago
- Showell markup--DRY up your templates by showell 3 years, 5 months ago
- Make runfcgi fail when database connection is open before fork by mpasternacki 2 years, 2 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.
#