forums.py 777 B

1234567891011121314151617181920212223242526272829
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. # **************************************************************************
  4. # Copyright © 2016 jianglin
  5. # File Name: forums.py
  6. # Author: jianglin
  7. # Email: xiyang0807@gmail.com
  8. # Created: 2016-12-17 13:12:23 (CST)
  9. # Last Update:星期六 2017-3-25 18:55:24 (CST)
  10. # By:
  11. # Description:
  12. # **************************************************************************
  13. from .views import BaseView
  14. from forums.extension import db
  15. from forums.api.forums.models import Board
  16. class BoardView(BaseView):
  17. pass
  18. def register_forums(admin):
  19. admin.add_view(
  20. BoardView(
  21. Board,
  22. db.session,
  23. name='管理版块',
  24. endpoint='admin_board',
  25. category='管理社区'))