Page 1

file-archive
28KB

Create Project

Django-admin startproject myproject

Create App

python manage.py startapp library

Add App With Django Project


INSTALLED_APPS = [
    'library',
]

project urls.py

Urls.py

library/urls.py

Models

models.py

Forms

forms.py

Views

views.py

Templates

templates/library/author_create.html

templates/library/author_update.html

templates/library/author_list.html

templates/library/author_delete.html

Last updated