Whether I am trying to access all the instances of "Project" model class from the admin page or in the python shell I still get (Project.objects.all() in pyhon shell or in admin : https://ibb.co/S7F491d)
<Project: Project object (4)>, <Project: Project object (5)>, <Project: Project object (6)>
but instead i want
<Project: Project object (1)>, <Project: Project object (2)>, <Project: Project object (3)>
the indexing seems to show the ith Project created.
class Project(models.Model):
title = models.CharField(max_length=20)
description = models.CharField(max_length=200, blank=True)
image = models.ImageField(null=True)
data = models.DateField(blank=False, null=10 / 20 / 2009)
objects = models.Manager()