이번엔 질문과 답변을 템플릿을 이용해서 만들어보자. #pybo/views.py from django.http import HttpResponse # http의 응답 from .models import Question def index(request): ''' pybo 목록 출력 ''' question_list = Question.objects.order_by('-create_date') # -로 역순 context = {'question_list':question_list} return render(request,'pybo/question_list.html',context) # 연결되는 html, 전달할 매체 context render를 이용해서 context에 key : value로 있는 questio..