704 | | **New in Django development version** |
705 | | If you need to loop over a list of lists, you can unpack the values |
706 | | in eachs sub-list into a set of known names. For example, if your context contains |
707 | | a list of (x,y) coordinates called ``points``, you could use the following |
708 | | to output the list of points:: |
| 704 | **New in Django development version**: If you need to loop over a list of lists, |
| 705 | you can unpack the values in each sub-list into individual variables. For |
| 706 | example, if your context contains a list of (x,y) coordinates called ``points``, |
| 707 | you could use the following to output the list of points:: |