From: Michael Tremer Date: Tue, 4 Jan 2011 19:10:44 +0000 (+0100) Subject: fireinfo: Remove profile list from index page. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6328a07bbe8d2a9146ac368610027853f4ea6f15;p=ipfire.org.git fireinfo: Remove profile list from index page. --- diff --git a/www/templates/stasy-index.html b/www/templates/stasy-index.html index 0f847965..7bdf0d46 100644 --- a/www/templates/stasy-index.html +++ b/www/templates/stasy-index.html @@ -18,12 +18,4 @@


- -

XXX Just for now...

-

- {% for p in profiles %} - {{ p }} - {% end %} -

- {% end block %} diff --git a/www/webapp/handlers_stasy.py b/www/webapp/handlers_stasy.py index 37b84de9..c1e152be 100644 --- a/www/webapp/handlers_stasy.py +++ b/www/webapp/handlers_stasy.py @@ -41,9 +41,7 @@ class StasyBaseHandler(BaseHandler): class StasyIndexHandler(StasyBaseHandler): def get(self): - profiles = self.stasy.get_profiles() - - self.render("stasy-index.html", profiles=profiles) + self.render("stasy-index.html") def post(self): profile_id = self.get_argument("profile_id", None)