To develop a Django application to store and retrieve data from a database using Object Relational Mapping(ORM).
Clone the problem from github.
Create a new app.
Enter the code for admin.py and models.py
Create django app and add student details.
models.py
from django.db import models
from django.contrib import admin
class Student(models.Model):
referencenumber=models.CharField(primary_key=true,max_length=20,help_text="reference number")
name=models.CharField(max_length=100)
age=models.IntegerField()
email=models.EmailField()
class StudentAdmin(admin.ModelAdmin):
list_display=('referencenumber','name','age','email')
admin.py
from django.contrib import admin
from myapp.models import Student,StudentAdmin
admin.site.register(Student,StudentAdmin)
Program executed successfully.

