Skip to content

Instantly share code, notes, and snippets.

@EBEREGIT
Last active November 27, 2024 23:07
Django Curriculum
Django
Intro and set up
- [x] Install - python -m pip install Django
- [x] Create Project - django-admin startproject blog
- [x] Start server - python manage.py runserver
- [x] View on the browser
- [x] Create an app - python manage.py startapp blog_app
- [x] Add App Route
- [x] Add View
- [x] Add Route
- [x] Create and Add templates ***
- [x] Add
- [x] Create and add styles ***
- [x] Create Model ***
- [x] Make Migration - python manage.py makemigrations blog_app
- [x] Run Migration - python manage.py migrate
Admin
- [x] Setup Admin - python manage.py createsuperuser
- [x] Show Admin
- [x] Add Blog Model
Crud app - CREATE, READ, UPDATE, DELETE
- [x] Create Templates (View ALL with add form, View One with update form and delete)
- [x] Create Views and add routes
CRUD with Django forms
- [x] Update with Django Forms
- [x] Code Optimization With try___Except__
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment