Handle goal pages for unset years

This commit is contained in:
Mouse Reeve
2021-08-04 12:05:24 -07:00
parent 97b643ac72
commit 535ff5e6d8
2 changed files with 7 additions and 2 deletions

View File

@ -4,6 +4,7 @@ from django.http import HttpResponseNotFound
from django.shortcuts import redirect
from django.template.loader import get_template
from django.template.response import TemplateResponse
from django.utils import timezone
from django.utils.decorators import method_decorator
from django.views import View
from django.views.decorators.http import require_POST
@ -26,6 +27,10 @@ class Goal(View):
if not goal and user != request.user:
return HttpResponseNotFound()
current_year = timezone.now().year
if not goal and year != timezone.now().year:
return redirect('user-goal', username, current_year)
if goal and not goal.visible_to_user(request.user):
return HttpResponseNotFound()