Changes between Initial Version and Version 1 of Ticket #27140
- Timestamp:
- Aug 29, 2016, 2:38:43 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27140 – Description
initial v1 1 If you try to access an object property in a django template, and this property raises a TypeError, then nothing will be raised. If it is, let's say, a ZeroDivisionError, then the exception is raised.1 If you try to access an object property in a django template, and this property raises a TypeError, then nothing will be raised. If it raises, let's say, a ZeroDivisionError, then the exception is raised. 2 2 3 3 4 {{{ 4 {{{#!python 5 5 from django.template import Context, Template 6 6 class FooClassTypeError: