Django HTML template inheritance

Source: Internet
Author: User

For URL files

   URL (r'^tp1/', VIEWS.TP1)

For the views file, jump to tp1.html while uploading the list to the front

def TP1 (Request):     = [1, 2, 3, 4, 5, 6]    return'tp1.html', {'list< /c14>': List})

For the inherited file master, the content will be replaced by writing {%block tag%}{%endblock%}

<! DOCTYPE html>"en">"UTF-8"> <title>{% block title%}{% endblock%}</title> <link rel="stylesheet"href="/static/commons.css"><style>. PG-content{height:48px; Line-height:48px; Text-Align:center;        color:red; Background-Color:white; }</style>class="pg-content"> Little Boy Management </div>    {% block content%}{% Endblock%}<script src="/static/jquery-3.3.1.js"></script></body>

Inheritors TP1 First imports through {% extends ' master.html '%} master.html

Then fill in the value in {%block tag%}{%endblock%}, and the content that needs to be substituted in master

Tag requires one by one correspondence

' master.html ' %} {% block title%} old boy management {% Endblock%} {% block content%}    <ul>     { for in list%}        <li>{{i}}</li>    {% endfor% }    </ul>{% endblock%}

Django HTML template inheritance

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.