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: tasks.md
+36-14
Original file line number
Diff line number
Diff line change
@@ -71,17 +71,22 @@ You can preview your work by running `flask run` in the root of your fork. Then
71
71
72
72
For now let’s setup a basic route that displays our simplified `index.html` template.
73
73
74
-
Create a basic route in `app.py` by creating a function called `jobs`.
75
-
76
-
In the body of the function return a call to the `render_template()` function, pass a parameter of `index.html`.
74
+
- Create a basic route in `app.py` by creating a function called `jobs`.
75
+
- In the body of the function return a call to the `render_template()` function, pass a parameter of `index.html`.
77
76
78
77
## 1.6 - Route Decorators
79
78
80
-
@pytest.mark.app-route-decoractors Still in `app.py` attach a `route()` decorator with the URL of `/` to the `jobs` function. Attach an additional route decorator so that this function can also be reach at the URL `/jobs`.
79
+
@pytest.mark.app-route-decoractors Still in `app.py`:
80
+
- Attach a `route()` decorator with the URL of `/` to the `jobs` function.
81
+
- Attach an additional route decorator of `/jobs`. **Note: The `jobs` function can now be reached at `/` and `/jobs`**
81
82
82
-
At this point you have a working application with a single route. Try it out by opening a terminal at the root of the project and running the command `flask run`. Open a browser and navigate to the URL: `http://localhost:5000`. Appending `/jobs` should display the same page.
83
+
# Preview
84
+
At this point you have a working application with a single route. Try it out:
85
+
- Open a terminal at the root of the project
86
+
- Run the command `flask run`.
87
+
- Open a browser and navigate to the URL: `http://localhost:5000`. **Note: Appending `/jobs` should display the same page.**
83
88
84
-
# Module 02 - Styling
89
+
# Module 02 - Base Template and Styling
85
90
86
91
## 2.1 - Create a Layout Template
87
92
@@ -105,6 +110,19 @@ For the `href` use the mustache template markup `{{}}` and the flask `url_for()`
105
110
106
111
@pytest.mark.add-fontawesome The last `<link>` tag in `layout.html` should have an `href` value of `https://use.fontawesome.com/releases/v5.2.0/css/all.css`. Make sure to preview the application and check out the _awesome_ styling.
107
112
113
+
## 2.5 - Extend Base Template
114
+
115
+
@pytest.mark.extend-base-template To use `layout.html` as the base template:
116
+
- Open `index.html`, above the `<h1>` use the template markup `{% %}` and the extends tag to inherit `layout.html`.
117
+
- Wrap the `<h1>` element in a `block` called `content`.
118
+
119
+
# Preview
120
+
At this point you have a styled application.
121
+
Check out the styles:
122
+
- Open a terminal at the root of the project
123
+
- Run the command `flask run`.
124
+
- Open a browser and navigate to the URL: `http://localhost:5000`.
125
+
108
126
# Module 03 - Preparing for Dynamic Content
109
127
110
128
## 3.1 - Import SQLite
@@ -153,28 +171,32 @@ In the body of `query_db` create a variable called `db`. Assign this variable th
153
171
## 3.9 - Query Database Function Execute
154
172
@pytest.mark.app-query-database-function-execute In the body of `query_db` call the `execute` function on `db`, pass in the `query` and `args` variables. Assign the return value to a variable called `cursor`.
155
173
156
-
## 3.10 - Query Database Function Execute
174
+
## 3.10 - Query Database Function Fetchall
157
175
@pytest.mark.app-query-database-function-fetchall In the body of `query_db`:
158
176
-`fetchall` data from the `cursor` and assign it to a variable called `results`.
159
177
- Close the `cursor` with the `close` function.
160
178
161
-
## 3.11 - Query Database Function Execute
162
-
@pytest.mark.app-query-database-function-single Next, in the function body add a test if `one` is `True`:
179
+
## 3.11 - Query Database Function Single
180
+
@pytest.mark.app-query-database-function-single Next, in the function body of `query_db`add a test if `one` is `True`:
163
181
- if true return a ternary if, `results[0] if results else None`.
164
182
- else return all `results`.
165
183
166
184
## 3.12 - Close the Connection
167
185
168
-
@pytest.mark.app-close-the-connection In order to make sure the database connection is closed when the `app_context` is torn down create a function in `app.py` called `close_connection`.
169
-
Add a parameter called `exception` to the parameter list.
186
+
@pytest.mark.app-close-the-connection In order to make sure the database connection is closed when the `app_context` is torn down:
187
+
- Create a function in `app.py` called `close_connection`.
188
+
- Add a parameter called `exception` to the parameter list.
170
189
171
190
In the function body:
172
-
- Call `getattr` with three arguments `g`, `'_database'`, and `None` and assign the return value to a `db` variable.
191
+
- Call `getattr` with three arguments `g`, `'_database'`, and `None`
192
+
- Assign the return value to a `db` variable.
173
193
- If `db` is not `None``close` the `db`.
174
194
175
-
To ensure this function is called when the `app_context` is destroyed use the `@app.teardown_appcontext` decorator.
195
+
## 3.13 - Close the Connection Decorator
196
+
197
+
@pytest.mark.app-close-the-connection-decorator To ensure the `close_connection` function is called when the `app_context` is destroyed give decorate it with `@app.teardown_appcontext`.
0 commit comments