pallets / flask

The Python micro framework for building web applications.
https://flask.palletsprojects.com
BSD 3-Clause "New" or "Revised" License
67.5k stars 16.14k forks source link

Fixing missing closing </li> statements in the base layout of the flaskr tutorial #5482

Closed gatoniel closed 3 months ago

gatoniel commented 3 months ago

I did not create an issue for this.

In my opinion, the closing tags </li> were missing in the g.user auth part of the base.html template of the flaskr tutorial. I added them in two places:

So far I have not changed the CHANGES.rst, as I think this is a minor change.

davidism commented 3 months ago

li does not require a closing tag. Be sure to search first before working on something like this, there are many previous closed PRs discussing it.