]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blobdiff - webapp/handlers.py
fireinfo: Fix regex for AMD APUs
[people/shoehn/ipfire.org.git] / webapp / handlers.py
index ea46985b191fd5dcd54ccb18e0727e2fa0339cc6..8a082b0f96baac1283593ee129fca4708b5a9995 100644 (file)
@@ -15,17 +15,19 @@ import tornado.web
 
 import backend
 
+from handlers_accounts import *
 from handlers_admin import *
 from handlers_base import *
 from handlers_boot import *
 from handlers_download import *
+from handlers_fireinfo import *
 from handlers_iuse import *
 from handlers_mirrors import *
 from handlers_news import *
 from handlers_nopaste import *
 from handlers_planet import *
 from handlers_rss import *
-from handlers_stasy import *
+from handlers_talk import *
 from handlers_tracker import *
 from handlers_wishlist import *
 
@@ -120,3 +122,11 @@ class GeoIPHandler(BaseHandler):
                mirrors = self.mirrors.get_for_location(peer)
 
                self.render("geoip/index.html", addr=addr, peer=peer, mirrors=mirrors)
+
+
+class DonateHandler(BaseHandler):
+       def get(self):
+               # Interesting items from the wishlist.
+               wishlist_items = self.wishlist.get_hot_wishes()
+
+               self.render("donate.html", wishlist_items=wishlist_items)