Skip to content

Commit afb875e

Browse files
committed
Fix: 어드민 페이지에서 연도별로 후원사 등급 이름이 같은 경우 구분 할 수 있도록 연도 정도 추가
1 parent 15a6162 commit afb875e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sponsor/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def accepted_count(self):
6767
return Sponsor.objects.filter(level=self, submitted=True, accepted=True).count()
6868

6969
def __str__(self):
70-
return self.name
70+
return f"({self.year}) {self.name}"
7171

7272

7373
class BenefitByLevel(models.Model):

0 commit comments

Comments
 (0)