Problem in the Django tutorial?

2018-08-21 Thread Alesh Houdek
I'm doing the Django tutorial and got stuck on the static files section: https://docs.djangoproject.com/en/2.1/intro/tutorial06/#customize-your-app-s-look-and-feel Could not get the style.css file to work despite triple-checking everything. After much research, I got it to work by adding th

Re: Problem in the Django tutorial?

2018-08-21 Thread Daniel Hepper
That shouldn't be necessary, as the tutorial has you put the CSS file into the static directory in your polls app, not your project. Static files in your polls app should be found with the default settings: Django’s STATICFILES_FINDERS >