Created by David Walter
Dokumentace : https://docs.djangoproject.com/en/5.2/
Témata:
https://docs.djangoproject.com/en/5.2/topics/
Obsah - strom: https://docs.djangoproject.com/en/5.2/contents/
Cvičení - vhodné pro otestování
https://www.w3schools.com/django/django_exercises.php
https://www.geeksforgeeks.org/python/django-projects/
https://www.w3schools.com/django/django_intro.php
django-admin startproject NAZEV
/
python -m django startproject NAZEV
third-party apps and add-ons
https://www.djangoproject.com/community/ecosystem/
models.py).python manage.py makemigrations to create migrations for those changespython manage.py migrate to apply those changes to the database.python .\manage.py runserver
python manage.py shell
ClassName.objects.all()
// get object where PrimaryKey = 1
q = Question.objects.get(pk=1)
exit()