]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - webapp/handlers_nopaste.py
fireinfo: Fix layout and disabled module.
[people/shoehn/ipfire.org.git] / webapp / handlers_nopaste.py
CommitLineData
60024cc8
MT
1#!/usr/bin/python
2
3import tornado.web
4
5from handlers_base import *
6
7
8class NopasteIndexHandler(BaseHandler):
9 def get(self):
10 self.render("nopaste-index.html")
11
12 def post(self):
13 pass
14
15
16class NopasteEntryHandler(BaseHandler):
17 def get(self, uuid):
18 pass
19