Skip to content

sanjayashwinP/django-orm-app

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django ORM Web Application

AIM

To develop a Django application to store and retrieve data from a database using Object Relational Mapping(ORM).

Entity Relationship Diagram

Include your ER diagram here

ER diagram

DESIGN STEPS

STEP 1:

Clone the empty Repository from Github.

STEP 2:

Under the directory Dataproject install a django project named 'myapp'.Check database engine 'sqlite'.

STEP 3:

Write our code in models.py and admin.py and modify setting.py.Run Django project.

PROGRAM

models.py

from django.db import models from django.contrib import admin

Create your models here.

class Student (models.Model): referenceno=models.CharField(primary_key=True,max_length=6,help_text='reference number') name=models.CharField(max_length=50) age=models.CharField(max_length=20) email=models.EmailField() mobileno=models.IntegerField()

class StudentAdmin(admin.ModelAdmin): list_display=('referenceno','name','age','email','mobileno')

admin.py

from django.contrib import admin from .models import Student,StudentAdmin

Register your models here.

admin.site.register(Student,StudentAdmin)

OUTPUT

django output

RESULT

The program is executed sucessfully executed

About

orm project

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%