I\'m trying to find an easy way to build forms which show dates in the Australian format (dd/mm/yyyy). This was the only way I could find to do it. It seems like there sho
In my form I'me using:
def today(): from datetime import date return date.today().strftime("%d.%m.%Y") when = models.DateField(u'Когда', default=today)