Skip to content

Commit

Permalink
Fix: 어드민 페이지에서 연도별로 후원사 등급 이름이 같은 경우 구분 할 수 있도록 연도 정도 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jungmir committed Oct 5, 2024
1 parent 15a6162 commit afb875e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sponsor/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def accepted_count(self):
return Sponsor.objects.filter(level=self, submitted=True, accepted=True).count()

def __str__(self):
return self.name
return f"({self.year}) {self.name}"


class BenefitByLevel(models.Model):
Expand Down

0 comments on commit afb875e

Please sign in to comment.