question_list.html 파일이 자동생성이 않됩니다.

from flask import Blueprint, render_template

from pybo.models import Question

bp = Blueprint('main', name, url_prefix='/')

@bp.route('/hello')
def hello_pybo():
return 'Hello, pybo!'

@bp.route('/')
def index():
question_list = Question.query.order_by(Question.create_date.desc())
return render_template('question/question_list.html', question_list=question_list)

점프 투 플라스크 68페이지 'question/question_list.html' 위와 같이 코딩했는데 templates아래에 html파일이 자동으로 생성이 안되는 것이 어떤 이유 때문인지요?

[코딩 이미지 링크]
https://m.blog.naver.com/jsystra/222296220735

Willees 378

2021년 4월 2일 5:03 오후

파일은 코드로 자동생성되지 않습니다. 직접 파일을 생성해 주셔야 합니다. - 박응용님, 2021년 4월 3일 7:30 오후 추천 , 대댓글
목록으로