Skip to content

Commit 2dd481a

Browse files
committed
docs: module 2 and 3 task revisions
1 parent 586dbc1 commit 2dd481a

File tree

1 file changed

+36
-14
lines changed

1 file changed

+36
-14
lines changed

tasks.md

+36-14
Original file line numberDiff line numberDiff line change
@@ -71,17 +71,22 @@ You can preview your work by running `flask run` in the root of your fork. Then
7171

7272
For now let’s setup a basic route that displays our simplified `index.html` template.
7373

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`.
7776

7877
## 1.6 - Route Decorators
7978

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`**
8182

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.**
8388

84-
# Module 02 - Styling
89+
# Module 02 - Base Template and Styling
8590

8691
## 2.1 - Create a Layout Template
8792

@@ -105,6 +110,19 @@ For the `href` use the mustache template markup `{{}}` and the flask `url_for()`
105110

106111
@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.
107112

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+
108126
# Module 03 - Preparing for Dynamic Content
109127

110128
## 3.1 - Import SQLite
@@ -153,28 +171,32 @@ In the body of `query_db` create a variable called `db`. Assign this variable th
153171
## 3.9 - Query Database Function Execute
154172
@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`.
155173

156-
## 3.10 - Query Database Function Execute
174+
## 3.10 - Query Database Function Fetchall
157175
@pytest.mark.app-query-database-function-fetchall In the body of `query_db`:
158176
- `fetchall` data from the `cursor` and assign it to a variable called `results`.
159177
- Close the `cursor` with the `close` function.
160178

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`:
163181
- if true return a ternary if, `results[0] if results else None`.
164182
- else return all `results`.
165183

166184
## 3.12 - Close the Connection
167185

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.
170189

171190
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.
173193
- If `db` is not `None` `close` the `db`.
174194

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`.
176198

177-
# Module 04 - Display Jobs and Employers
199+
# Module 04 - Display Jobs
178200

179201
## 4.1 - All Jobs
180202

0 commit comments

Comments
 (0)