I have fetched a date from database with the following variable
{{ i.operation_date }}
convert it into python datetime object if it isn't already. then add deltatime
one_years_later = Your_date + datetime.timedelta(days=(years*days_per_year))
for your case days=365.
you can have condition to check if the year is leap or no and adjust days accordingly
you can add as many years as you want