Reputation: 6540
With this:
mb = self.birthdate.replace(year=date.today.year)
It gives this:
Caught AttributeError while rendering: 'builtin_function_or_method' object has no attribute 'year'
It is possible to replace year?
Upvotes: 1
Views: 2130
Reputation: 5206
The correct line is:
mb = self.birthdate.replace(year=date.today().year)
date.year is a method not a attribute
Upvotes: 3