is there a particular reason why not all quizzes are posted so that we can do them more than one day in advance at our own pace? Just wondering. Can we review question 1 in class? Can we talk more about the nav bar? What is the difference between a flask starter directory and just using HTML/CSS/JS? I don't think I completely understand how post/redirect/get handles when we don't want to resubmit data and when we do want to resubmit data. I'm still a little confused about using ""ACTION"". Is the a maximum number of routes an app should have? Is it better to typically have more/less routes? Can you change the css formatting of one part of a template that inherits another one? How much of a child template can be changed before it cannot inhert a parent template? 1. How does template inheritance work when more than one child template exists for the same base or parent template? What blocks are replaced? "I am not really sure about Post-Redirect-Get. @app.route('/ask_city/', methods=['GET','POST']) def ask_city(): if request.method == 'GET': return render_template( 'city_form.html', cities=countries.known.keys()) else: city = request.form.get('city') # redirect is a new import from flask return redirect(url_for('country',city=city)) Can you go over how the POST-redirect-GET is used in the Flask route above? " I do not have a specific question for now but I'm sure I will have more in the future when implementing my project. "extra ""the user"": We might also want to allow the user the user to re-submit. Indeed, one reason I was initially reluctant to commit to Flask in CS 304 is that I worried that it would be hard to remember all these pieces, and I haven't been entirely wrong."" What other alternatives were considered (out of curiosity)?" under what circumstances will we be using
? why would we want to go to the current URL? I'd like to see a demo of the flask-starter! / Could we get a demo of the starter directory working? / I think a demo of the starter app would be helpful!