aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/main/info/jams.py
blob: 19e4cb9ce03a1fe49281d0a6ca7d3aa1f999f213 (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")