##// END OF EJS Templates
Reflinks to OPs are bold now. Refactored reflinks to build using the same code. Refactored autoescaping
Reflinks to OPs are bold now. Refactored reflinks to build using the same code. Refactored autoescaping

File last commit:

r1148:94091a42 default
r1309:a2eaff61 default
Show More
banner.py
10 lines | 207 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()
text = models.TextField()
post = models.ForeignKey('Post')
def __str__(self):
return self.title