aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/main/info/help.py
blob: a47362fc985216e95b38737f99e8f7b8f6c9b5a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
from pysite.base_route import RouteView


class HelpView(RouteView):
    path = "/info/help"
    name = "info.help"

    def get(self):
        return self.render("main/info/help.html")