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 님 446
2021년 4월 2일 5:03 오후