[Python] Django html 상속 extends

[Python] Django html 상속 extends

# base.html {% load static %} Title {%block content%} {%endblock%}

# users.html {%extends 'myApp/base.html'%} {%block content%} {%if users%} {%for user in users%} User Info Name : {{user.name}} Email : {{user.email}} {%endfor%} {%endif%} {%endblock%}

from http://insubkim.tistory.com/129 by ccl(A) rewrite - 2021-12-01 11:00:59