my projects is bidding site, i wanted to close the bid after some specific date. but i don't know how to implement it. please any one suggest me anything
models.py
class products(models.Model):
produtname=models.CharField(max_length=255)
productdesc=models.CharField(max_length=255)
amount=models.FloatField()
image=models.ImageField(upload_to='pics')
featured=models.BooleanField(default=False)
enddate=models.DateTimeField()
after the end date I wanted to add the details to the another model automatically another model which has product id and user id