Currently, the Javascript in status.html takes up a good amount of the file. As we add more features to the site, this size will inevitably grow. Move the Javascript out of the script tags and into a separate file. Preferably using whatever tools Flask offers to serve Javascript.
Currently, the Javascript in
status.html
takes up a good amount of the file. As we add more features to the site, this size will inevitably grow. Move the Javascript out of thescript
tags and into a separate file. Preferably using whatever tools Flask offers to serve Javascript.Could possibly be a 'low' difficulty issue.