+ def authors(self):
+ return self.tags.filter(category='author')
+
+ def tag_unicode(self, category):
+ return ", ".join(self.tags.filter(category=category).values_list('name', flat=True))
+
+ def author_unicode(self):
+ return self.tag_unicode('author')