123456789101112131415161718 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- """
- demeter web page
- name:main.py
- author:rabin
- """
- from __load__ import *
- class index_path(Load):
- @tornado.web.authenticated
- def get(self):
- self.view("index.html")
- class main_path(Load):
- @tornado.web.authenticated
- def get(self):
- self.view("main.html")
|