Vicki Langer

πŸ’•myπŸ•πŸˆπŸ  | Asks "why?" too much

Read Django docs https://docs.djangoproject.com/en/2.2/topics/files/

Invalid block tag on line 27: 'upload.title', expected 'empty' or 'endfor'. Did you forget to register or load this tag?

Apparently VS Code doesn't like Django. ugh

linting checks the code for style errors mostly. They don't (usually) affect execution (unless they are things like undefined variables or other errs), but they are super useful at times.

0 Likes

Ahhh, the linter :) I don't even lint python anymore, i use black. You should use it too, it autofixes and pretties up your code. https://github.com/python/black

0 Likes