aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/main/info/index.py
blob: 4c44f01c5cea877087e5b60f40bc70ab70edc137 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# coding=utf-8
from flask import redirect

from pysite.base_route import RouteView


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

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