Hi all, Just building my first site with django and Ive hit my first snag that I cant find in the documentation.
Just as an example scenario, suppose I have my model- class User(models.Model): signup_date = models.DateTimeField() full_user_date = models.DateTimeField() full_user = models.BooleanField() I want to make it so that when we arrive at full_user_date django flicks full_user over to 1 and sends the user an email. I imagine I could do it in the views.py, but it would be dependant on someone visiting the page. I think it would be more effecient to just do a check once a day, thats all I need. How can i set it up so django does a check on the database after a set time? any ideas? Phil --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---