Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/internal/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ class QuoteListView(ListView):
model = Quote
template_name = 'internal/quote_list.html'
context_object_name = 'quotes'
queryset = Quote.objects.order_by('-date').select_related('author')
queryset = Quote.objects.order_by('-date', '-id').select_related('author')
Comment thread
TheStrgamer marked this conversation as resolved.
Outdated


class QuoteFormMixin(CustomFieldsetFormMixin, ABC):
Expand Down