Extend item description
This commit is contained in:
parent
6ddfdddd00
commit
9fd744e186
1 changed files with 4 additions and 1 deletions
|
@ -21,7 +21,10 @@ class Item(CanBeContained):
|
||||||
changed_at = models.DateTimeField(auto_now=True)
|
changed_at = models.DateTimeField(auto_now=True)
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.name + ", " + str(self.form_factor)
|
items = [self.name, self.description]
|
||||||
|
items.extend([tag.description for tag in self.tags.all()])
|
||||||
|
items.append(str(self.form_factor))
|
||||||
|
return ", ".join(items)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def all_tags(self):
|
def all_tags(self):
|
||||||
|
|
Loading…
Reference in a new issue