tutorial
tutorial copied to clipboard
This is a tutorial we are using for Django Girls workshops
Because I missed the leading "." before "pythonanywhere.com" in **settings.py** my `ALLOWED_HOSTS` read: ALLOWED_HOSTS = ["127.0.0.1", "pythonanywhere.com"] This meant that the testing on the local development machine worked, but the...
Issue Discription (myvenv) C:\Users\rkfql\djangogirls>python manage.py runserver 0:8000 Performing system checks... System check identified no issues (0 silenced). July 14, 2020 - 23:15:38 Django version 2.0.13, using settings 'mysite.settings' Starting development...
I copied the same specification from the English version. Includes files from Windows, macOS, Visual Studio, etc.
As noted in https://github.com/DjangoGirls/tutorial/issues/1642#issue-562077173 and https://github.com/DjangoGirls/tutorial/issues/1642#issuecomment-583785230, there's three things that can be easily mistaken for oneanother: - the **English noun "post"** (in context of the tutorial: a blog post) -...
### Issue description A lot of students run into the problem that the command line convention is not clear. We do explain it in the intro to command line, but...
Translation made by: * 2501 (https://crowdin.com/profile/kirinokirino) * Ad0lph (https://crowdin.com/profile/stakansemok) * Александр Романович (https://crowdin.com/profile/pandusik666) * alex.kurinoy (https://crowdin.com/profile/alex.kurinoy) * Alexvinn (https://crowdin.com/profile/Alexvinn) * Ali Aliyev (https://crowdin.com/profile/shamkir) * Alice K (https://crowdin.com/profile/akuznetsova) * Aliya Iskhakova...
Custom css from `blog.css` won't load if the urls.py file is not updated as ```python from django.contrib import admin from django.urls import path, include from django.contrib.staticfiles.urls import staticfiles_urlpatterns urlpatterns =...
In `blog/model.py` it seems there would be a better name than `text` for the body of the blog post, just because "text" is so often considered to be a type...
Currently we install a virtualenv which is considered a best practice, but maybe a bit too complex for beginners. Nowadays you can use ```pip install --user Django``` for a good...