]>
Commit | Line | Data |
---|---|---|
1 | #!/usr/bin/python3 | |
2 | ||
3 | from .. import util | |
4 | from . import base | |
5 | ||
6 | class LookupHandler(base.AnalyticsMixin, base.BaseHandler): | |
7 | async def get(self, address): | |
8 | # Lookup address | |
9 | address = util.Address(self.backend, address) | |
10 | ||
11 | self.render("location/lookup.html", address=address) |