]> git.ipfire.org Git - ipfire.org.git/blame - src/web/location.py
crontab: Throw away all logging output of the mirror check
[ipfire.org.git] / src / web / location.py
CommitLineData
03d07d6e 1#!/usr/bin/python3
f5b01fc2 2
440aba92 3from .. import util
124a8404 4from . import base
f5b01fc2 5
28e09035 6class LookupHandler(base.AnalyticsMixin, base.BaseHandler):
9fdf4fb7 7 async def get(self, address):
2517822e 8 # Lookup address
440aba92 9 address = util.Address(self.backend, address)
2517822e 10
559d42b9 11 self.render("location/lookup.html", address=address)