##// END OF EJS Templates
Added tag search. Refactored search to show any model results in a list.
Added tag search. Refactored search to show any model results in a list.

File last commit:

r691:86f7abf4 1.8-dev
r692:d0013853 1.8-dev
Show More
__init__.py
9 lines | 282 B | text/x-python | PythonLexer
neko259
Moved models to a separate module folder. Starting to split up models file
r384 __author__ = 'neko259'
from boards.models.post import Post
neko259
Split up post model into post and thread to normalise models. Still need some refactoring
r398 from boards.models.post import Thread
neko259
Split up tag module from post module
r385 from boards.models.tag import Tag
neko259
Split up user models
r386 from boards.models.user import Ban
from boards.models.user import Setting
from boards.models.user import User
neko259
Moved thread model to a separate module
r691 from boards.models.thread import Thread