##// END OF EJS Templates
Feed of posts for the specific IP (works only for moderators who can delete posts)
Feed of posts for the specific IP (works only for moderators who can delete posts)

File last commit:

r1418:9e2c30a1 default
r1641:d57d7e7e default
Show More
banner.py
13 lines | 309 B | text/x-python | PythonLexer
neko259
Added banner to show the site news. Returned the message middleware because it...
r1148 from django.db import models
class Banner(models.Model):
title = models.TextField()
neko259
Allow banner with no text. If so, details post text is used
r1418 text = models.TextField(blank=True, null=True)
neko259
Added banner to show the site news. Returned the message middleware because it...
r1148 post = models.ForeignKey('Post')
def __str__(self):
return self.title
neko259
Allow banner with no text. If so, details post text is used
r1418
def get_text(self) -> str:
return self.text or self.post.get_text()