guest.py 445 B

123456789101112131415161718192021222324252627282930
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from flask import Blueprint, render_template
  4. __author__ = 'James Iter'
  5. __date__ = '2017/5/30'
  6. __contact__ = 'james.iter.cn@gmail.com'
  7. __copyright__ = '(c) 2017 by James Iter.'
  8. blueprint = Blueprint(
  9. 'v_guest',
  10. __name__,
  11. url_prefix='/guest'
  12. )
  13. blueprints = Blueprint(
  14. 'v_guests',
  15. __name__,
  16. url_prefix='/guests'
  17. )
  18. def show():
  19. return render_template('guest.html')