From c5413d2d229a7382b35d4842b3306438afa2a386 Mon Sep 17 00:00:00 2001 From: Chad Whitacre Date: Wed, 11 Jan 2017 14:33:49 -0500 Subject: [PATCH] Don't show closed teams on the homepage --- www/index.html.spt | 1 + 1 file changed, 1 insertion(+) diff --git a/www/index.html.spt b/www/index.html.spt index d06b264e08..67ab7835cd 100644 --- a/www/index.html.spt +++ b/www/index.html.spt @@ -13,6 +13,7 @@ teams = website.db.all(""" SELECT teams.*::teams FROM teams + WHERE not is_closed ORDER BY ctime DESC """)