1
0
Fork 0

literature self_buy_giveData variable is now required in extern view

This commit is contained in:
Benni Bärmann 2022-12-09 16:55:26 +00:00
parent d09b97f72f
commit 0b044692d6
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class CheckForm(FdbForm):
class LiteratureForm(CheckForm):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields['selfbuy_give_data'].required = False
self.fields['selfbuy_give_data'].required = True
class Meta:
model = Literature
fields = ['cost', 'info', 'source', 'notes', 'selfbuy', 'selfbuy_data', 'selfbuy_give_data']