mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Merge branch 'master' into live
This commit is contained in:
commit
84c9b5518a
1 changed files with 3 additions and 1 deletions
|
@ -179,7 +179,9 @@ async def index(request: Request):
|
|||
).limit(50).all()
|
||||
|
||||
# Packages that the request user maintains or comaintains.
|
||||
context["packages"] = maintained.order_by(
|
||||
context["packages"] = maintained.filter(
|
||||
models.User.ID == models.PackageBase.MaintainerUID
|
||||
).order_by(
|
||||
models.PackageBase.ModifiedTS.desc(), models.Package.Name.desc()
|
||||
).limit(50).all()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue