diff options
Diffstat (limited to 'core/views/other.py')
-rw-r--r-- | core/views/other.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/views/other.py b/core/views/other.py index f1a7bdf..4019e73 100644 --- a/core/views/other.py +++ b/core/views/other.py @@ -104,12 +104,12 @@ def frontpage(request): """never seen in common practice. Logon should redirect here when this is more useful""" if request.user.is_authenticated: - return render(request, "tasks.html") + return render(request, "login/tasks.html") expeditions = Expedition.objects.order_by("-year") logbookentry = LogbookEntry cave = Cave - return render(request, "frontpage.html", locals()) + return render(request, "login/frontpage.html", locals()) @login_required_if_public |