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


class IndexView(RouteView):
    path = "/info/jams"
    name = "info/jams"

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