Django Crash Course Part 2 - Building a blog

preview_player
Показать описание
In the second part of this Django crash course, we will set up the base templates and a few pages.

---

Support me

Important links

---

#codewithstein #django #python
Рекомендации по теме
Комментарии
Автор

Another excellent tutorial setting up the base templates and a few pages.

dalestewart
Автор

Thanks for the video! Greetings from Brazil.

azdemoz
Автор

Scratching my head on why you used a section to 'add padding/margins' unless you plan on doing some styling and then better choice would have been using id rather than class so you could specifically target. Other thing and really just stylistic I prefer using © in place of your (c). Great video series.

madusan
Автор

everything works fine until I add the {% block title %}. Then my formatter breaks my code up and my page won't load due to an error that {% endblock %} is invalid

omarjones
Автор

Figured it out. Left quotes out on path on URLs page-

andrewgarello
Автор

Hi, Great video- but
I can't figure out why everything works until about time 8:55 where we are adding an additional path.
As soon as I added about, I get an error that says:from core.views import frontpage, about
ModuleNotFoundError: No module named 'core', -even though the frontpage is extended from the same module and that works.
Thanks:

andrewgarello