Hi, I am designing a tender calendar, where each tender goes through about 10-12 stages, each stage happening on a seperate date. I have multiple tenders happening in a month, which means on a date, you might have different stages of different tenders opening.
I have two classes Class Tendert(models.Model): name =model.CharField(... detail = models. Class Calendar(models.Model): tender = models.ForeignKey(Tender) announcement_date= models.DateField() launch_date= models.DateField() ...... ...... last_date = models.DateField() What is the best method to capture, all events happening on a specific day. The view must give a report.... when you try the url calendar/2007/dec/20 On December 20th 2007 Tender 222 date of announcement Tender 243 last date for receiving bids Tender 227 date for recieving final bid Tender 270 date of opening of bid I know it is something trivial, but I am not able to figure out Thanks in advance Ramdas --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---