aboutsummaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-12-22 21:41:30 +0000
committerrubenwardy <rw@rubenwardy.com>2018-12-22 21:41:30 +0000
commit137a6928bcb247cf080012b20db05e0fd796a4a8 (patch)
tree11a103c8ecb02dcbb48d42937e11ca039ac4e2ab /app/views
parentde9135f44f9c85eba66cb9ef1a3bbb1875823355 (diff)
downloadcheatdb-137a6928bcb247cf080012b20db05e0fd796a4a8.tar.xz
Replace Popular with Top Mods
Diffstat (limited to 'app/views')
-rw-r--r--app/views/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/__init__.py b/app/views/__init__.py
index 6e4794b..6b4f37f 100644
--- a/app/views/__init__.py
+++ b/app/views/__init__.py
@@ -49,11 +49,11 @@ def home_page():
query = Package.query.filter_by(approved=True, soft_deleted=False)
count = query.count()
new = query.order_by(db.desc(Package.created_at)).limit(8).all()
- popular = query.order_by(db.desc(Package.score)).limit(8).all()
+ pop_mod = query.filter_by(type=PackageType.MOD).order_by(db.desc(Package.score)).limit(8).all()
pop_gam = query.filter_by(type=PackageType.GAME).order_by(db.desc(Package.score)).limit(4).all()
pop_txp = query.filter_by(type=PackageType.TXP).order_by(db.desc(Package.score)).limit(4).all()
return render_template("index.html", count=count, \
- new=new, popular=popular, pop_txp=pop_txp, pop_gam=pop_gam)
+ new=new, pop_mod=pop_mod, pop_txp=pop_txp, pop_gam=pop_gam)
from . import users, githublogin, packages, meta, threads, api
from . import tasks, admin, notifications, tagseditor, licenseseditor