diff options
| author | Bobby <[email protected]> | 2024-03-01 16:00:28 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-03-01 16:00:28 -0500 |
| commit | 7fec39909e24e8ee7ffd7412286d33c59f600630 (patch) | |
| tree | 12e39907ac07c3db431e3a4d1c6aeef7c04bcbc1 | |
| parent | 5c0b62ad493b629142f722b2f84c91071153350a (diff) | |
| download | thatcomputerscientist-7fec39909e24e8ee7ffd7412286d33c59f600630.tar.xz thatcomputerscientist-7fec39909e24e8ee7ffd7412286d33c59f600630.zip | |
Update models.py
| -rw-r--r-- | blog/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blog/models.py b/blog/models.py index e8c0eb10..f564cd75 100644 --- a/blog/models.py +++ b/blog/models.py @@ -74,7 +74,7 @@ class AnonymousCommentUser(models.Model): return cls(email=email_hash, token=token_hash, avatar=avatar) def __str__(self): - return self.name + return self.name + "(" + self.email + ")" class Comment(models.Model): post = models.ForeignKey( |
