1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #18169 -- NoReverseMatch not silenced if from block.super

This commit is contained in:
Anssi Kääriäinen
2013-05-30 10:25:58 +03:00
parent 84909377f2
commit 369b6fab25
5 changed files with 30 additions and 2 deletions

View File

@@ -616,6 +616,12 @@ Miscellaneous
stored as ``null``. Previously, storing a ``blank`` value in a field which
did not allow ``null`` would cause a database exception at runtime.
* If a :class:`~django.core.urlresolvers.NoReverseMatch` exception is risen
from a method when rendering a template it is not silenced. For example
{{ obj.view_href }} will cause template rendering to fail if view_href()
raises NoReverseMatch. There is no change to {% url %} tag, it causes
template rendering to fail like always when NoReverseMatch is risen.
Features deprecated in 1.6
==========================