• SC
      • Moved the js files around so they’re only loaded on the pages that need them.
      • Did the same for css files. Much easier to keep the templates/stylesheets/scripts separate for their various views, consistently named and applied.
      • Added function for get_team_abv for the 3-letter code.
      • Styled the all-picks table. Vertical text was nontrivial.
      • My repo has functional structure currently – an alternative design is divisional structure, where there’s a subdir for each route and the static files (templates/js/css) are all alongside it.
      • Closed the blueprint ticket for the next milestone, doing it for the week/picks view nesting. Learned quite a bit here. Reorganized for blueprints.
      • Added a url_value_preprocessor to determine requested_week and available_weeks before passing that information on to the routes in the week blueprint that need it. You’re basically just taking it out of the native ‘values’ dict and putting it into the g object for your own use. Then you don’t have to type week<week> in all the routes, and add the week arg to all functions, etc.
      • Added url_defaults as well so that it queries the db for the most recent week on the site’s homepage.
      • Organized all the weekX/picks subpages, and added the links for them.
      • Created ticket for the “don’t show all picks till sunday” enforcement, to be done at the beginning of next year.
      • Started the LB work.