Skip to content

Commit 89a000b

Browse files
committed
update: admin에서 보여지는 세션/프로그램 관련 정보 수정
1 parent fc9035c commit 89a000b

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

program/models.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ class ProposalCategory(models.Model):
1111
visible = models.BooleanField(default=True)
1212

1313
class Meta:
14-
verbose_name = "프로그램 카테고리"
15-
verbose_name_plural = "프로그램 카테고리들"
14+
verbose_name = "세션 카테고리"
15+
verbose_name_plural = "세션 카테고리들"
1616

1717
def __str__(self):
1818
return self.name
@@ -92,8 +92,8 @@ class Proposal(models.Model):
9292
updated_at = models.DateTimeField(auto_now=True)
9393

9494
class Meta:
95-
verbose_name = "프로그램"
96-
verbose_name_plural = "프로그램들"
95+
verbose_name = "세션"
96+
verbose_name_plural = "세션들"
9797

9898
def __str__(self):
9999
return self.title
@@ -137,5 +137,9 @@ class Program(models.Model):
137137
),
138138
)
139139

140+
class Meta:
141+
verbose_name = "프로그램"
142+
verbose_name_plural = "프로그램들"
143+
140144
def __str__(self):
141145
return self.title

0 commit comments

Comments
 (0)