Django template for loop usage

Source: Internet
Author: User

Perform different actions when the list is empty or non-empty:

 for  in list%}    ... {empty %}    ... {% endfor%}

The number of times the loop is accessed using Forloop.counter, which sequentially outputs the number of cycles, starting at 1:

 for  in list%}    ...    forloop.counter }}    ... {% endfor%}

Starting from 0 counts:

 for  in list%}    ...    Forloop.counter0 }}    ... {% endfor%}

Determine if it is the first cycle:

 for  in list%}    ...    {ifforloop.first %}        is the first  round.     {% endif%}    ... {% endfor%}

Determine if this is the last loop:

 for  in list%}    ...    {ifforloop.last %}        is the last  round.    {% endif%}    ... {% endfor%}

Reverse Circulation:

 for inch reversed %}    {{Item}}{% endfor%}

Django template for loop usage

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.