Re: how to find activities dues for today and tommorow

2018-07-26 Thread Deepak Madan Singh
Thank you Julio :) On Thu, Jul 26, 2018 at 12:53 AM, Julio Biason wrote: > Hi Deepak, > > You could set up another model to track when something should be done to > the tree; something like this: > > class Tree(models.Model): > ... > planted_date = models.DateField() > > class

Re: how to find activities dues for today and tommorow

2018-07-25 Thread Julio Biason
Hi Deepak, You could set up another model to track when something should be done to the tree; something like this: class Tree(models.Model): ... planted_date = models.DateField() class Reminder(models.Model): tree = models.ForeignKey(tree) when = models.DateField() what =

how to find activities dues for today and tommorow

2018-07-25 Thread deepak madan
suppose a model for the tree which is planted on some days. The second model has activities dues to be done after some regular interval like 1) giving fertilizer A after 5 days 2) giving fertilizer B after 15 days. My question is when this 5th or 15th days arrives, to design a reminder page to