Skip to content

Commit

Permalink
author is a chamber for a bill
Browse files Browse the repository at this point in the history
  • Loading branch information
longhotsummer committed Nov 22, 2024
1 parent 00f8fd1 commit 2ea29c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions peachjam/models/bill.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from django.db import models
from django.utils.translation import gettext_lazy as _

from peachjam.models import Author, CoreDocument
from peachjam.models import CoreDocument


class Bill(CoreDocument):
Expand All @@ -11,8 +11,8 @@ class Bill(CoreDocument):
"peachjam.Author", null=True, on_delete=models.CASCADE, verbose_name=_("author")
)

author_label = Author.model_label
author_label_plural = Author.model_label_plural
author_label = _("Chamber")
author_label_plural = _("Chambers")

class Meta(CoreDocument.Meta):
verbose_name = _("bill")
Expand Down

0 comments on commit 2ea29c8

Please sign in to comment.