diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/jrnl/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/jrnl/views.py b/app/jrnl/views.py index 5aa9d2b..bbeccca 100644 --- a/app/jrnl/views.py +++ b/app/jrnl/views.py @@ -101,7 +101,7 @@ class HomepageList(ListView): # Call the base implementation first to get a context context = super(HomepageList, self).get_context_data(**kwargs) context['homepage'] = HomepageCurrator.objects.get(pk=1) - context['location'] = CheckIn.objects.get(pk=1) + context['location'] = CheckIn.objects.latest() context['IMAGES_URL'] = settings.IMAGES_URL return context |