aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/main/info/help.py
blob: 06c021c207a766106e57e1d6fbe4f3871f12c425 (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")