aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/main/info/rules.py
blob: 5605ba16ac89232cee77a9e992bad96b797b420d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# coding=utf-8
from pysite.base_route import RouteView


class RulesView(RouteView):
    path = "/info/rules"
    name = "info.rules"

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