added comments for when placeholders are removed

This commit is contained in:
Seligmann
2022-03-26 18:02:18 -05:00
parent 7c2ae324cd
commit b21893796c

View File

@@ -5,8 +5,10 @@ main = Blueprint('main', __name__)
@main.route('/')
def index():
return 'Index'
# return render_template('index.html')
return 'Index' # placeholder
@main.route('/profile')
def profile():
return 'Profile'
# return render_template('profile.html')
return 'Profile' # placeholder