aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/wiki/special/index.py
blob: 15c0a64959378ab9cbb37991337a3c2237c1240c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
from pysite.base_route import RouteView
from pysite.mixins import DBMixin


class PageView(RouteView, DBMixin):
    path = "/special"
    name = "special"

    def get(self):
        return self.render("wiki/special.html")