##// END OF EJS Templates
Added tag 2.12.0 for changeset 9cffa58fae74
Added tag 2.12.0 for changeset 9cffa58fae74

File last commit:

r1441:f2404e3c merge decentral
r1492:3d14eafa default
Show More
__init__.py
12 lines | 361 B | text/x-python | PythonLexer
neko259
Don't show archived random images
r1416 STATUS_ACTIVE = 'active'
STATUS_BUMPLIMIT = 'bumplimit'
STATUS_ARCHIVE = 'archived'
neko259
Moved models to a separate module folder. Starting to split up models file
r384
neko259
Moved post image to a separate model. Each post (as of model) can contain multiple images now. The image shown to the user is got with get_first_image method
r693 from boards.models.image import PostImage
neko259
Added support for different attachment types
r1273 from boards.models.attachment import Attachment
neko259
Moved post image to a separate model. Each post (as of model) can contain multiple images now. The image shown to the user is got with get_first_image method
r693 from boards.models.thread import Thread
neko259
Moved models to a separate module folder. Starting to split up models file
r384 from boards.models.post import Post
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
neko259
Added banner to show the site news. Returned the message middleware because it...
r1148 from boards.models.banner import Banner