Hi!
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!
|
1
|
|||
|
|
|
|
If you set
in your view, you can display the months and years in the template using the ifchanged template tag.
Another useful Django queryset method for blog archives is dates. For example
returns a |
||
|
|
|
|
Here is some code snipped from my blog where I list all of the blog entries within a certain year:
In the above:
You should be able to easily modify this example to also include the month. The above shows that you can combine multiple filters in a row. |
||
|
|
|
|
You can try with the built-in regroup tag. In your view:
In your template:
|
||
|
|