MODELS IN
DJANGO
AGENDA
We will learn in this lesson:
• Models in Django
• Create Model.
• Add Records.
• Add Multiple Records.
MODELS IN DJANGO
CREATE MODEL
CREATE MODEL
CREATE MODEL
CREATE MODEL
CREATE MODEL
CREATE MODEL
CREATE MODEL
you go to this app and open the admin.py file.
It is in this file that you're going to register your database table, so that it can appear in the admin interface
and you can do things such as add, delete, and update records.
CREATE MODEL
ADMIN PAGE
ADMIN PAGE
ADMIN PAGE
ADMIN PAGE
DJANGO INSERT DATA
DJANGO INSERT DATA
DJANGO INSERT DATA
DJANGO INSERT DATA
DJANGO INSERT DATA
DJANGO INSERT DATA
Set Fields to Display
Set Fields to Display

Models in Django projects-using Python..