<ul> {% for todo in to_do_list %} # to_do_list 는 클래스에서 지정된 객체 리스트, context_object_name 에 지정된 값 # 이 객체에는, 모든 TodoList 를 포함한, TodoList.objects.all() 을 포함 # def get_queryset(self) 를 통해서 객체를 포함함 <li>할일 제목 : {{ todo.name }}</li> <li>생성 날짜 : {{ todo.date_created }}</li> <li>데드라인 날짜 : {{ todo.date_deadline }}</li> <li>남은 일수 : {{ todo.remaining_days }}</li> {% endfor %} </ul>
요청을 보낼 URL 설정
todo/urls.py 파일을 설정해 줍니다
1 2 3 4 5 6 7 8
from django.contrib import admin from django.urls import path from .views import IndexView