Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

T1413 - Reorder website children #27

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Changes from all commits
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
5 changes: 4 additions & 1 deletion website_sponsorship/controllers/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ def children_page(self, page=1, random=False, **kwargs):
offset = (page - 1) * self._children_per_page
domain = self._extend_search_domain(domain, kwargs)
children = child_obj.search(
domain + website_domain, offset=offset, limit=self._children_per_page
domain + website_domain,
offset=offset,
limit=self._children_per_page,
order="unsponsored_since asc, create_date asc, completion_date asc",
)
if not children:
return self.load_child(**kwargs)
Expand Down
Loading