To develop a Django application to store and retrieve bus information using orm.
S### TEP 1: Clone the repository to theia ide. start a new app inside the project folder.
Type the appropriate code for your table and provide appropriate data types to the columns.
Create a report about your project in readme.md file and upload the django.orm.app folder to your remote repository.
from django.db import models
from django.contrib import admin
# Create your models here.
class Bus(models.Model):
Busno = models.IntegerField(primary_key=True, help_text="Busno")
driver=models.CharField(max_length=100)
From=models.CharField(max_length=100)
To=models.CharField(max_length=100)
noofseats=models.IntegerField()
class Businfo(admin.ModelAdmin):
list_display = ('Busno','driver','From','To','noofseats')
Thus the project is developed to have Bus information database

