Skip to content

Commit ce1c112

Browse files
authored
Merge pull request #144 from LUS24/leospairani/cou-300-section-12-lecture-121-video-ebook-code-mismatch
Updated files to match lecture videos, see COU-300
2 parents bcb9356 + cb188bc commit ce1c112

File tree

10 files changed

+4
-4
lines changed

10 files changed

+4
-4
lines changed

docs/docs/12_task_queues_emails/06_sending_html_emails/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def send_user_registration_email(email, username):
246246
"Successfully signed up",
247247
f"Hi {username}! You have successfully signed up to the Stores REST API.",
248248
# highlight-start
249-
render_template("email/registration.html", username=username),
249+
render_template("email/action.html", username=username),
250250
# highlight-end
251251
)
252252
```

docs/docs/12_task_queues_emails/06_sending_html_emails/end/tasks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ def send_user_registration_email(email, username):
3333
email,
3434
"Successfully signed up",
3535
f"Hi {username}! You have successfully signed up to the Stores REST API.",
36-
render_template("email/registration.html", username=username),
36+
render_template("email/action.html", username=username),
3737
)

docs/docs/12_task_queues_emails/07_deploy_background_worker_render/end/tasks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ def send_user_registration_email(email, username):
3333
email,
3434
"Successfully signed up",
3535
f"Hi {username}! You have successfully signed up to the Stores REST API.",
36-
render_template("email/registration.html", username=username),
36+
render_template("email/action.html", username=username),
3737
)

docs/docs/12_task_queues_emails/07_deploy_background_worker_render/start/tasks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ def send_user_registration_email(email, username):
3333
email,
3434
"Successfully signed up",
3535
f"Hi {username}! You have successfully signed up to the Stores REST API.",
36-
render_template("email/registration.html", username=username),
36+
render_template("email/action.html", username=username),
3737
)

0 commit comments

Comments
 (0)