I have a monthly report model and I want to set it to a specific date (cycle). This is my model:
class MonthlyReport(m.Model):
month = m.DateField() <= set to a specific day in a month
worker = m.ForeignKey('auth.User')
total = m.IntegerField()
cycle = m.DateField(blank=True, null=True)
approvedDate = m.DateTimeField(blank=True, null=True)