blob: 22e79afa7a09fae1cab3b13a1f4cc1f093273aea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
from pysite.base_route import RouteView
class RulesView(RouteView):
path = "/about/rules"
name = "about.rules"
def get(self):
return self.render("main/about/rules.html")
|