Changes between Version 2 and Version 3 of Ticket #24338, comment 2


Ignore:
Timestamp:
Feb 13, 2015, 11:07:41 AM (10 years ago)
Author:
Julien Hartmann

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24338, comment 2

    v2 v3  
    11You are right, it is covered in the documentation. The culprit code, however, lies in Django itself, as the '''{% extends %}''' tag has not been updated: it does not support the new backend-agnostic template objects and still expects a '''django.template.Template'''. However, there is no supported way to get one before the rendering stage.
    22
    3 According to the '''{% extends %}''' documentation, this should work:
     3According to the '''{% extends %}''' documentation (https://docs.djangoproject.com/en/1.8/ref/templates/builtins/#std:templatetag-extends), this should work:
    44
    55{{{#!python
Back to Top