Skip to content

Commit

Permalink
Improve inline play block caption
Browse files Browse the repository at this point in the history
  • Loading branch information
FinemechanicPub committed Sep 22, 2024
1 parent 7446bdc commit a538758
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/library/admin/author.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ class PlayInline(SortableInlineAdminMixin, admin.TabularInline):
form = PlayInlineForm
model = AuthorPlay
extra = 0
verbose_name = "Пьеса"
verbose_name_plural = "Пьесы"
verbose_name = "Авторство в пьесе"
verbose_name_plural = "Авторство в пьесах"
classes = ("collapsible",)
autocomplete_fields = ("play",)
readonly_fields = (
Expand Down Expand Up @@ -65,8 +65,8 @@ class OtherPlayInline(SortableInlineAdminMixin, admin.TabularInline):
form = PlayInlineForm
model = AuthorPlay
extra = 0
verbose_name = "Другая пьеса"
verbose_name_plural = "Другие пьесы"
verbose_name = "Авторство в другой пьесе"
verbose_name_plural = "Авторство в других пьесах"
classes = ("collapsible",)
autocomplete_fields = ("play",)

Expand Down

0 comments on commit a538758

Please sign in to comment.