Skip to content

Commit

Permalink
Translations discard field
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelagz committed Apr 29, 2024
1 parent 10e37e2 commit b77b9d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/laboratory/shelfobject/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ class Meta:
class EditEquimentShelfobjectForm(forms.ModelForm, GTForm):
description = forms.CharField(widget=genwidgets.Textarea, label=_("Description"))
status = forms.ModelChoiceField(queryset=Catalog.objects.filter(key='shelfobject_status'), label=_("Status"), widget=genwidgets.Select)
marked_as_discard = forms.BooleanField(widget=genwidgets.YesNoInput, required=False)
marked_as_discard = forms.BooleanField(widget=genwidgets.YesNoInput, required=False, label=_("Mark as discard"))

def __init__(self, *args, **kwargs):
org = kwargs.pop("org_pk")
Expand Down

0 comments on commit b77b9d2

Please sign in to comment.