Changeset - c7d4309149a8
[Not reviewed]
0 2 0
Bradley Kuhn (bkuhn) - 9 years ago 2015-03-04 23:40:54
bkuhn@ebb.org
Fix blog by year index.

Add an additional context data that is always the entire list of years,
and use that instead of date_list for the current queryset.
2 files changed with 6 insertions and 2 deletions:
0 comments (0 inline, 0 general)
www/conservancy/apps/blog/urls.py
Show inline comments
...
 
@@ -62,4 +62,7 @@ def all_authors():
 
                  key=last_name)
 

	
 
def all_year_list():
 
    return Entry.objects.dates(date_field, 'year')
 

	
 
# The functions are passed to the context uncalled so they will be
 
# called for each web request.  If we want to only make these database
...
 
@@ -69,2 +72,3 @@ def all_authors():
 
extra_context['all_authors'] = all_authors
 
extra_context['all_tags'] = all_tags_by_use_amount
 
extra_context['all_year_list'] = all_year_list
www/conservancy/templates/base_blog.html
Show inline comments
...
 
@@ -25,8 +25,8 @@
 
{% endfor %}
 
</ul>
 
{% if date_list %}
 
{% if all_year_list %}
 
<h2>Blog Index by Year</h2>
 
<ul>
 
{% for year in date_list reversed %}<li><a href="{{ year|date:"Y" }}/">{{ year|date:"Y" }}</a></li>{% endfor %}
 
{% for year in all_year_list reversed %}<li><a href="{{ year|date:"Y" }}/">{{ year|date:"Y" }}</a></li>{% endfor %}
 
</ul>
 
{% endif %}
0 comments (0 inline, 0 general)