aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/main/info/help.py
blob: 868b969f7be5bd1edb40eeb658abf5fd9fb9edb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# coding=utf-8
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")