I want to loop from current date to xxx date in columns I'm thinking about using this function:
from datetime import timedelta, date
def daterange(start_date, end_date):
start_date = datetime.date.today()
end_date = start_date + datetime.timedelta(days=5)
for n in range(int((end_date - start_date).days)):
yield start_date + timedelta(n)
for single_date in daterange(start_date, end_date):
print single_date.strftime("%Y/%m/%d")
But I don't know how to pass it to context in views.py
I want something like this, but in days:
You can solve it using custom template tag:
Firstly create the file structure. Go into the app directory where the tag is needed, and add these files:
The templatetags/custom_tags.py file:
The template part: