set year to None if no posts

This commit is contained in:
2022-02-27 12:58:08 +00:00
parent 8be89f72de
commit 33219ca90a

View File

@@ -63,14 +63,18 @@ def index(request):
fet_meeting_only, fet_meeting_only,
) )
else: else:
last_post_year = Post.objects.get_queryset().first().date.year last_year = Post.objects.get_queryset().first()
now_year = timezone.now().year if last_year:
last_post_year = last_year.date.year
now_year = timezone.now().year
# if the last post is a year old or more, then set year to it # if the last post is a year old or more, then set year to it
if last_post_year < now_year: if last_post_year < now_year:
year = last_post_year year = last_post_year
else:
year = now_year
else: else:
year = now_year year = None
data = { data = {
'year': year, 'year': year,