Could you film the demo of it working (as you had mentioned in the reading)? Could you explain handlers and/vs. processor variables again? When a link is clicked on a website to a different page, is this first associated with a given html file which then calls an associated function with url_for or does the link fist match to a python function which then renders an html template file? If we are only using post forms, is it best practice to still check if the request.method is a get? The examples in today's reading only have post forms, but we still check for get forms. Is there a difference in how you should handle / route form submissions when the form is part of the base.html file rather than it's own file? I'm trying to connect the example we saw in flask3 countries lookup to the lookup homework assignment As our project grows, when should we start splitting routes into multiple Python files instead of keeping everything in one app.py?