Mistake in the python Quickstart tutorial

Mistake: I believe you have mistake in code in the Quickstart tutorial for python.

Description:

  1. In the HTML file, line 11, 15 states:
<p><a href="/docs/logout">Logout</a></p>

…

<p><a href="/docs/login">Login</a></p>

but I believe it should be:

<p><a href="logout">Logout</a></p>

…

<p><a href="login">Login</a></p>
  1. In the section: Add Templates you have following text:
    Create a new sub-directory in your project folder named templates, and create two files within: dashboard.html and home.html. You can paste the content from the two fields below into those files, respectfully:
    It sounds to me that we should expect two HTML examples: home.html and dashboard.html, but there is only home.html file.