Physics Derivation Graph navigation Sign in

lesson learned for model-view-controller: form workflows

Published 2019-12-31T02:21:00Z by Physics Derivation Graph

Model-view-controller (MVC) is a way to separate presentation from the backend computation and data transformation.

For my application, "model" = compute.py; "view" = a collection of webpages; "controller" = controller.py

MVC nuances with Flask and WTForms --