| 123456789101112131415161718192021222324252627282930 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- from flask import Blueprint, render_template
- __author__ = 'James Iter'
- __date__ = '2017/5/30'
- __contact__ = 'james.iter.cn@gmail.com'
- __copyright__ = '(c) 2017 by James Iter.'
- blueprint = Blueprint(
- 'v_guest',
- __name__,
- url_prefix='/guest'
- )
- blueprints = Blueprint(
- 'v_guests',
- __name__,
- url_prefix='/guests'
- )
- def show():
- return render_template('guest.html')
|