##// END OF EJS Templates
Save "opening post" flag with the post itself and don't count it every time. Speed up getting posts with attachments and images
Save "opening post" flag with the post itself and don't count it every time. Speed up getting posts with attachments and images

File last commit:

r1148:94091a42 default
r1337:4c8c3ec5 default
Show More
banner.py
10 lines | 207 B | text/x-python | PythonLexer
from django.db import models
class Banner(models.Model):
title = models.TextField()
text = models.TextField()
post = models.ForeignKey('Post')
def __str__(self):
return self.title