Django allows you to create pure-HTML error pages for 404 (not found),
400 (bad request), 403 (unauthorized), and 500 (error) status codes. Partial documentation
can be seen here.
This implementation assumes no other part of the app has been loaded,
which required hardcoding of the home URL (/) and the copying of
relevant CSS to each file (a copied and stripped-down version of our
maintenance.html).
Add custom error pages
Django allows you to create pure-HTML error pages for 404 (not found), 400 (bad request), 403 (unauthorized), and 500 (error) status codes. Partial documentation can be seen here.
This implementation assumes no other part of the app has been loaded, which required hardcoding of the home URL (/) and the copying of relevant CSS to each file (a copied and stripped-down version of our maintenance.html).
[Finishes #171863803]