]> git.ipfire.org Git - people/shoehn/ipfire.org.git/commitdiff
fireinfo: Remove profile list from index page.
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 4 Jan 2011 19:10:44 +0000 (20:10 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 4 Jan 2011 19:10:44 +0000 (20:10 +0100)
www/templates/stasy-index.html
www/webapp/handlers_stasy.py

index 0f847965fc6ab973a9824f1d13da54c4d16a9c22..7bdf0d468d06643763af793b0c122f358b0cc77e 100644 (file)
                </p>
        </form>
        <br class="clear" />
-
-       <h3>XXX Just for now...</h3>
-       <p>
-               {% for p in profiles %}
-                       <a href="/profile/{{ p }}">{{ p }}</a>
-               {% end %}
-       </p>
-
 {% end block %}
index 37b84de90217bd5fc1f10a5ea7ca6ac42140ce21..c1e152be26767d34ed3bde545bc72ee79c237e36 100644 (file)
@@ -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)