summaryrefslogtreecommitdiff
path: root/modules/installed/router/info.py
blob: 9b1f6ff851befa5c0212c320b81ad4736c774882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import cherrypy
from plugin_mount import PagePlugin
from modules.auth import require

class Info(PagePlugin):
    title = 'Info'
    order = 10
    url = 'info'

    def __init__(self, *args, **kwargs):
        self.register_page("router.info")

    @cherrypy.expose
    @require()
    def index(self):
        return self.fill_template(title="Router Information", main="""
<p>Eventually we will display a bunch of info, graphs and logs about the routing functions here.</p>
""")