Changes between Initial Version and Version 1 of Ticket #9070


Ignore:
Timestamp:
Sep 16, 2008, 12:54:47 AM (16 years ago)
Author:
Adrian Holovaty
Comment:

(Fixed formatting in description.)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9070 – Description

    initial v1  
    11Ive tried the columnize tag (http://code.djangoproject.com/wiki/ColumnizeTag) in my template. Everything works if I use it in one template file:
    22
     3{{{
    34#mytemplate.html
    45
     
    910{%endcolumnize%}
    1011{% endfor %}
     12}}}
    1113
    1214But the problem is when I put the stuff in the {%for%}-loop in an external template file like this:
    1315
     16{{{
    1417#myinternalloop.html
    1518{% load columnize %}
     
    2326{% include "myinternalloop.html" %}
    2427{% endfor %}
     28}}}
    2529
    26 Ive tried to debug and it seems that "parse_until" seems to lose {%endcolumnize%} and this results in that columnize will never start again when traversing a new item. It will continue there where it stops on the previous item. (__init__.py of ColumnizeNode will not be called)
    27 
     30I've tried to debug and it seems that "parse_until" seems to lose {% endcolumnize %} and this results in that columnize will never start again when traversing a new item. It will continue there where it stops on the previous item. (__init__.py of ColumnizeNode will not be called)
Back to Top