##// END OF EJS Templates
Speed up post hiding, do not load the hidden posts list for each post being processed
Speed up post hiding, do not load the hidden posts list for each post being processed

File last commit:

r1986:0b41439a default
r2082:47f758c2 default
Show More
banner.py
13 lines | 335 B | text/x-python | PythonLexer
from django.db import models
class Banner(models.Model):
title = models.TextField()
text = models.TextField(blank=True, null=True)
post = models.ForeignKey('Post', on_delete=models.CASCADE)
def __str__(self):
return self.title
def get_text(self) -> str:
return self.text or self.post.get_text()