Tagged Questions
2
votes
1answer
55 views
show years between begin and end
How can I count and show all years between an given Beginn and a given End?
My Example:
for item in folderContents:
Beginn = item.Beginn.strftime('%Y')
Ende = item.Ende.strftime('%Y')
...
0
votes
3answers
283 views
Listing blog entries by year,month
I want to do something like this:
Entries.objects.values('date.year','date.month')
but this line is not valid. How can I list blog entries by year,month and display them in template?
Thanks!