Django Definition Template Syntax 06 (filter multiple Filter)

Source: Internet
Author: User

<HTML>    <Head>        <title>DOcument</title>    </Head>    <Body>        <H1>{{User}}</H1>        </BR>        </BR>        <H1>Filter filters</H1>          <P>1, the use of the Linux pipeline thinking</P>          <P>2, first the value of book into uppercase, and then converted to lowercase, and then converted to uppercase letters</P>{% for book in user%}<Li>{{book | upper |lower | capfirst}}</Li>{% empty%}<Li>No books found</Li>{% endfor%}</Body></HTML>

#-*-coding:cp936-*- fromDjango.httpImportHttpResponse fromDjango.templateImportLoader,contextclassPerson ():def __init__(self,name,age,sex): Self.name=name Self.age=Age Self.sex=SexdefSay (self):return 'My name is'+Self.namedefIndex (Request): T=loader.get_template ('index.html') Person=person ('Deng', 17,'female') Booklist=['python','C + +','Java','PHP']    #booklist=[]dict={' Age': 25,'Yuyan':'python','where':' China','name':'Xiaodeng','Sex':'male'}    #passing data to an HTML pageC=context ({'User': Booklist}) #Rendering Methodst=T.render (c)returnHttpResponse (t)

Django Definition Template Syntax 06 (filter multiple Filter)

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.