class Bla(Case):
def __init__(self, model, field, condition=None, then=None, **lookups):
la = model._meta.get_field(field).__str__
returns
<bound method Field.__str__ of <django.db.models.fields.DateField: date>>
How do I get the value of the date field specifically the year?
I solved it this way