diff --git a/tldtest/views.py b/tldtest/views.py index e32e2ba..6fe8c79 100644 --- a/tldtest/views.py +++ b/tldtest/views.py @@ -12,7 +12,7 @@ def get_queryset(self): Tutorial for this is on https://learndjango.com/tutorials/django-search-tutorial When writing more optimized search things, might be good reference """ - object_list = TLD.objects.all() + object_list = TLD.objects.all().order_by('tld') return object_list