summaryrefslogtreecommitdiffstats
path: root/core/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'core/views.py')
-rw-r--r--core/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views.py b/core/views.py
index 2ef83cc..fdc6642 100644
--- a/core/views.py
+++ b/core/views.py
@@ -19,7 +19,7 @@ class LoggedOutHomepage(TemplateView):
def get_context_data(self):
return {
- "identities": Identity.objects.filter(local=True),
+ "identities": Identity.objects.filter(local=True).order_by("-created")[:20],
}