|
@@ -16,15 +16,5 @@ class Event(models.Model):
|
|
|
|
|
|
body = models.TextField(blank=True)
|
|
|
|
|
|
- def author_text(self):
|
|
|
- if self.author is not None:
|
|
|
- return str(self.author)
|
|
|
-
|
|
|
- @property
|
|
|
- def snippet(self):
|
|
|
- body_snippet = textwrap.shorten(self.body, width=35, placeholder="...")
|
|
|
- # Define here rather than in __str__ so we can use it in the admin list_display
|
|
|
- return "{author} - {snippet}...".format(author=self.author_text, snippet=body_snippet)
|
|
|
-
|
|
|
def __str__(self):
|
|
|
- return self.snippet
|
|
|
+ return self.body
|