Changes between Initial Version and Version 1 of Ticket #27140


Ignore:
Timestamp:
Aug 29, 2016, 2:38:43 AM (8 years ago)
Author:
Éloi Rivard
Comment:

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.
     1If 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.
    22
    33
    4 {{{
     4{{{#!python
    55from django.template import Context, Template
    66class FooClassTypeError:
Back to Top