Workshop of the django-girls Django tutorial to introduce newcomers into the world of programming and Python.
- Installation ( 0cb8605 )
Follow the tutorial and add an extra step after installing Django in order to
store the requirements of the project.
# If you haven't done it yet, activate the environment with the following # line # source .env/bin/activate # And after that, store the requirements pip freeze --local > requirements.txt
- Setting up the project ( 7365461 ) Follow the tutorial steps, but beforehand,
Make sure you have sqlite3 installed
-
Creating your first app ( 8d37f5c )
-
Exploring the admin ( 9f0bde7 )
-
Adding URLs ( 178f093 )
-
Adding the first view ( babfbf5 )
-
Yea, a template ( 0c7d7a2 )
-
First QuerySet example ( 6857bb5 )
-
Templating every day ( 68e2222 )
-
CSS here ( 661f342 )
-
Template extension ( 9e44a2f )
-
First form ()