From 72855a2c329b059d09522f66e8dac822f1ae65da Mon Sep 17 00:00:00 2001 From: erjemin Date: Tue, 18 Aug 2026 17:34:14 +0300 Subject: [PATCH] =?UTF-8?q?mod:=20=D0=BC=D0=BE=D0=B4=D0=B5=D0=BB=D0=B8=20?= =?UTF-8?q?=D0=B8=20=D0=B0=D0=B4=D0=BC=D0=B8=D0=BD=D0=BA=D0=B0=20(4)=20?= =?UTF-8?q?=D0=B4=D1=80=D0=B0=D1=84=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hypn0/hypn0_site/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hypn0/hypn0_site/models.py b/hypn0/hypn0_site/models.py index 1172ce9..123b101 100644 --- a/hypn0/hypn0_site/models.py +++ b/hypn0/hypn0_site/models.py @@ -109,7 +109,7 @@ class TbHypn0Item(models.Model): ordering = ["-d_created_at"] def __str__(self) -> str: - return f"{self.title} ({self.hash_id})" + return f"{self.s_title} ({self.s_hash_id})" class TbVote(models.Model): @@ -144,7 +144,7 @@ class TbVote(models.Model): ordering = ["-d_created_at"] def __str__(self) -> str: - return f"Голос за {self.item.hash_id} [{self.fingerprint[:8]}...]" + return f"Голос за {self.k_item.hash_id} [{self.s_fingerprint[:8]}...]" class TbBlogPost(models.Model):