Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

어드민 페이지에서 후원사 정보가 보기 편하도록 수정 #174

Merged
merged 3 commits into from
Oct 5, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix: 어드민 페이지에서 연도별로 후원사 등급 이름이 같은 경우 구분 할 수 있도록 연도 정도 추가
  • Loading branch information
jungmir committed Oct 5, 2024
commit afb875ee66314f10ef2f19b09ccd7b977de916d8
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