You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: flask_tables/flask_tables.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -148,7 +148,7 @@ FLASK_DEBUG=1
148
148
149
149
In the terminal, we can run the command `flask run` to start our flask server. You should be able to access the application at the following URL: http://127.0.0.1:5000/.
The `errors` module generally handles errors that come about as a result of using the application. We will use the `errorhandler` decorator to handle errors. Let us create two templates called `404.html` and `500.html`. These templates will be used to display the error messages. They will also allow the user to safely navigate back to the home page of the application.
154
154
@@ -214,7 +214,7 @@ The error templates will contain the following error messages:
214
214
215
215
If you try to access a page that does not exist, you will be redirected to the `404.html` page. For example, if you try to access the following URL: http://127.0.0.1:5000/index1, you will get:
216
216
217
-

217
+

0 commit comments