Skip to content

Commit

Permalink
feat(registration): order XLSX primarily by attendee_status
Browse files Browse the repository at this point in the history
Refs: LINK-2166
  • Loading branch information
harriris-vincit committed Sep 17, 2024
1 parent 77000ed commit bc345aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion registrations/exports.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, registration: Registration) -> None:
.select_related(
"contact_person", "signup_group__contact_person", "protected_data"
)
.order_by("first_name", "last_name")
.order_by("attendee_status", "first_name", "last_name")
.only(
"first_name",
"last_name",
Expand Down

0 comments on commit bc345aa

Please sign in to comment.