>

TIL

3주차 Day 1. html

ekdud 2024. 7. 8. 23:58

동적 구문

Django 템플릿을 사용하는 경우,

{% %} , {{ }} 과 같이 사용하며 HTML 내에 동적인 구문을 삽입할 수 있게 하는 역할을 함.

{{ }} : 단순 변수 출력

{% %} : if, for문 등 로직을 실행.

{% for user in top_users %}
<tr>
  <th scope="row">{{ user.rank }}</th>
  <td><a href="{{ user.profile_url }}">{{ user.username }}</a></td>
  <td>{{ user.win }}</td>
  <td>{{ user.lose }}</td>
  <td>{{ user.draw }}</td>
</tr>